Run ID:136523
提交时间: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; }