Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
142428 赵乘浩 输出较大的数 Python3 Accepted 30 MS 3752 KB 124 2026-01-10 09:29:42

Tests(1/1):


Code:

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