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