#include<nits/stdc++.h> using namespace std; void a(int a,int b){ cout<<b<<' '<<a; } int main(){ int m,n; cin>>m>>n; a(m,n); return 0; }