Run ID:87212
提交时间:2024-08-07 07:54:13
x = input() x = int(x) if x<0: print(-1) elif x==0: print(0) else: print(1)