Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129589 叶航帅 08比较三个数大小II Python3 Accepted 63 MS 3772 KB 162 2025-08-29 14:33:44

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)