Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
122101 王均歌 07比较大小 Python3 Accepted 56 MS 3760 KB 83 2025-06-14 11:26:20

Tests(10/10):


Code:

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