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

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)