#include<iostream>
using namespace std;
int main() {
   int a=106,b=201,t;
   t=a;
   a=b;
   b=t;
   cout<<a" "<<b;
   return 0;
}