Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
104586 | 伍长辉 | 输出较大的数 | Python3 | Wrong Answer | 35 MS | 3740 KB | 105 | 2025-01-05 14:33:45 |
a,b=input(),split(',') a,b=int(a),int(b) if a>b: print('max='+str(a)) else: print('max='+str(b))
------Input------
8,5
------Answer-----
max=8
------Your output-----