Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
94328 | 王晨鑫 | 08比较三个数的大小 | Python3 | Accepted | 38 MS | 3784 KB | 207 | 2024-10-20 11:52:19 |
q=input().split() a=q[0] b=q[1] c=q[2] a=int(a) b=int(b) c=int(c) if a>b: if a<c: print(c) else: print(a) else: if b>c: print(b) else: print(c)