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

Tests(10/10):


Code:

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