Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
85897 赵乘浩 简单的分支结构 Python3 Accepted 32 MS 3760 KB 85 2024-07-21 09:12:47

Tests(1/1):


Code:

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