Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
88628 07交换数据II Python3 Wrong Answer 35 MS 3740 KB 97 2024-08-19 16:22:07

Tests(0/10):


Code:

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


Run Info:

------Input------
71 1
------Answer-----
1 71
------Your output-----