Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92752 余泽越 输出较大的数 Python3 Wrong Answer 39 MS 3768 KB 113 2024-10-06 13:43:08

Tests(0/1):


Code:

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


Run Info:

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