Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89448 张祁清 简单的分支结构 Python3 Accepted 41 MS 3736 KB 96 2024-08-24 20:09:34

Tests(1/1):


Code:

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