import random

x = random.randint(1 ,100)
print(x) 
if x> 50:
	print("x>50")
else:
	print("x < 50")