#include <stdio.h>// Remember that jumps flip conditionals// Also testq rdi rdi and jge test if the sign bit is setshorttest(short x,short y) {short val =12+ y;if(x <0) {if(x >= y)
val = x | y;else
val = x * y;}else if(y >=10) {
val = x / y;}return val;}intmain(void) {return0;}