Run ID:86915
提交时间:2024-07-29 16:31:41
n = int(input()) if n<0: print(-1) elif n==0: print(0) else: print(1)