Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
96116 | 赵乘浩 | 08比较三个数的大小 | Python3 | Wrong Answer | 36 MS | 3756 KB | 125 | 2024-11-03 09:14:45 |
a,b,c = map(int,input().split()) if a>b and a>c: print("a") if b>a and b>c: print("b") if c>a and c>b: print("c")
------Input------
69 90 74
------Answer-----
90
------Your output-----
b