Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128912 叶航帅 07比较大小 Python3 Accepted 50 MS 3756 KB 82 2025-08-20 19:08:37

Tests(10/10):


Code:

a, b = map(int, input().split()) if a > b: print(a) else: print(b)