Run ID:85257

提交时间:2024-07-16 19:42:01

x = int(input()) if x<0: print(-1) elif x==0: print(0) else: print(1)