Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92804 | 徐梓涵 | 07比较大小 | Python3 | Wrong Answer | 33 MS | 3760 KB | 144 | 2024-10-06 14:46:08 |
s=input().split() a=s[0] b=s[1] a=int(a) b=int(b) if a>b and a>b: print('max=',a , sep="") else: print('max=',b, sep='')
------Input------
7405 9836
------Answer-----
9836
------Your output-----
max=9836