Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92837 余泽越 07交换数据II Python3 Wrong Answer 39 MS 3752 KB 128 2024-10-06 15:18:01

Tests(0/10):


Code:

a = input().split() b = int(a[0]) c = int(a[1]) if a>b: d = b b = c c = d print(b,c) else: printb,c


Run Info:

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