Run ID:145860

提交时间:2026-01-25 19:19:55

#include<iostream> using namespace std; int main(){ long long a,b; cin>>a>>b; if(a>b){ cout<<b<<a; } else{ cout<<a; } return 0; }