Run ID:89448
提交时间:2024-08-24 20:09:34
x = int(input()) if x < 0: print('-1') elif x > 0: print('1') else: print('0')