# ITP1_2_A
a,b = map(int,input().split(" "))
if a > b:
print("a > b")
elif a < b:
print("a < b")
else:
print("a == b")
# ITP1_2_B
a,b,c = map(int,input().split(" "))
if a < b and b < c:
print("Yes")
else:
print("No")
a < b < c のようにも書けます.
# ITP1_2_B
a,b,c = map(int,input().split(" "))
if a < b < c:
print("Yes")
else:
print("No")
# ITP1_2_C
num_list = list((map(int,input().split(" "))))
num_list = sorted(num_list)
print(" ".join(list(map(str,num_list))))
# ITP1_2_D
W,H,x,y,r = map(int,input().split(" "))
if x-r >= 0 and x+r <= W and y-r >= 0 and y+r <= H:
print("Yes")
else:
print("No")