Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
49586 蔡璟恒 比较大小 Python3 Accepted 30 MS 3736 KB 86 2023-07-09 14:35:47

Tests(1/1):


Code:

a,b=map(int,input().split()) if a>b: print(a,b) else: print(b,a)