Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
142184 丁俊杰 输出较大的数 Python3 Wrong Answer 32 MS 3776 KB 76 2026-01-01 15:04:01

Tests(0/1):


Code:

s=input() a=int(s[0]) b=int(s[1]) da=max(a,b) print("max={}".format(da))


Run Info:

------Input------
8,5
------Answer-----
max=8
------Your output-----