#include <iostream> using namespace std; int main() { int A,B,sum=0; cin>>A>>B; sum=A; A=B; B=sum; cout<<A<<" "<<B; return 0; }