using namespace std; void swap(int &x,int &y){ int m; x=m; x=y; y=m;
} int main(){ int x,y; cin>>x>>y; cout<<x<<y; return 0; }