Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
130588 曹云翊 08比较大小 Python3 Wrong Answer 62 MS 3740 KB 87 2025-09-14 09:34:07

Tests(0/10):


Code:

a = input() b = input() a = int(a) b = int(b) if a>b: print(a) else: prinnt(b)


Run Info:

------Input------
53 26
------Answer-----
53
------Your output-----