Run ID:86153
提交时间:2024-07-23 09:16:14
x=int(input()) if x<0: print(-1) elif x==0: print(0) else: print(1)