| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 136523 | 孔声豪 | 07交换数据II | C++ | Wrong Answer | 1 MS | 272 KB | 171 | 2025-11-15 13:10:29 |
#include<bits/stdc++.h> using namespace std; int main(){ int f,n; cin>>f>>n; if(f>n){ cout<<n<<f<<endl; } else { cout<<f<<n<<endl; } return 0; }
------Input------
71 1
------Answer-----
1 71
------Your output-----
171