Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
41860 陈栋 比较大小 C++ Accepted 1 MS 268 KB 173 2022-11-07 21:07:27

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n>>m; if(n<m){ swap(n,m); cout<<n<<" "<<m; } else cout<<n<<" "<<m; return 0; }