Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
107846 伍长辉 07交换数据II Python3 Accepted 41 MS 3776 KB 84 2025-01-18 14:59:56

Tests(10/10):


Code:

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