def f(): x=eval(input()) if x>0: x=1 print('x=',x) elif x==0: x=0 print('x=',x) else: x=-1 print('x=',x) f()