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

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: print(b,c)


Run Info:

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