Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94330 王晨鑫 08比较三个数大小II Python3 Accepted 51 MS 3776 KB 207 2024-10-20 11:56:19

Tests(10/10):


Code:

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(a) else: print(c) else: if b<c: print(b) else: print(c)