Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
91722 |
徐梓涵 |
05交换数据 |
Python3 |
Wrong Answer |
34 MS |
3736 KB |
59 |
2024-09-22 14:03:12 |
Tests(0/10):
Code:
a=int(input())
b=int(input())
c=a
a=b
b=c
print(a,b)
Run Info:
------Input------
29 42
------Answer-----
42 29
------Your output-----