Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
97754 | 李昊宇 | 07交换数据II | C++ | Wrong Answer | 1 MS | 272 KB | 181 | 2024-11-16 14:58:23 |
#include<iostream> #include<cmath> using namespace std; int main(){ int n,x,y; cin>>n>>x; if(n>x){ y=n; n=x; x=y; } cout<<n<<x; }
------Input------
71 1
------Answer-----
1 71
------Your output-----
171