Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
104592 伍长辉 输出较大的数 Python3 Accepted 36 MS 3752 KB 103 2025-01-05 14:35:59

Tests(1/1):


Code:

a,b=input().split(',') a,b=int(a),int(b) if a>b: print('max='+str(a)) else: print('max='+str(b))