Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
142188 丁俊杰 输出较大的数 Python3 Accepted 30 MS 3756 KB 172 2026-01-01 15:42:56

Tests(1/1):


Code:

#写法二 a,b=input().split(",") #split分割函数,以逗号为分割 a,b=int(a),int(b) t=max(a,b) ans="max="+str(t) #进行字符串的拼接 print(ans)