Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143580 汪明轩 07交换数据II C++ Wrong Answer 0 MS 280 KB 136 2026-01-17 10:11:52

Tests(1/10):


Code:

#include<iostream> using namespace std; int main() { int a,b,t; cin>>a>>b; t=a; a=b; b=t; cout<<a<<" "<<b; return 0; }


Run Info:

------Input------
10 27
------Answer-----
10 27
------Your output-----
27 10