Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
105162 丁俊杰 07交换数据II Python3 Accepted 37 MS 3772 KB 87 2025-01-12 15:38:00

Tests(10/10):


Code:

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