Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
94287 王晨鑫 07交换数据II Python3 Accepted 37 MS 3764 KB 101 2024-10-20 11:08:46

Tests(10/10):


Code:

q=input().split() n=q[0] n=int(n) x=q[1] x=int(x) if n<x: print(n,x) else: print(x,n)