Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
128385 叶倪佳 输出较大的数 Python3 Wrong Answer 48 MS 3748 KB 111 2025-08-16 10:38:47

Tests(0/1):


Code:

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


Run Info:

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