Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94793 余睿毅 输出较大的数 Python3 Wrong Answer 37 MS 3764 KB 104 2024-10-26 13:35:25

Tests(0/1):


Code:

a=input().split(",") b=int(a[0]) c=int(a[1]) if c<b: print("max=",b) else: print("max=",c)


Run Info:

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