Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
49587 刘正楷 比较大小 Python3 Accepted 41 MS 3756 KB 106 2023-07-09 14:47:00

Tests(1/1):


Code:

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