Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136529 叶航帅 08比较三个数的大小 Python3 Accepted 62 MS 3780 KB 152 2025-11-15 13:25:31

Tests(10/10):


Code:

a,b,c = input().split() a = int(a) b = int(b) c = int(c) if a > b and a > c: print(a) elif b > a and b > c: print(b) else: print(c)