Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96122 赵乘浩 08比较三个数的大小 Python3 Accepted 41 MS 3772 KB 134 2024-11-03 09:17:11

Tests(10/10):


Code:

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