#include<iostream>
int main() {
   int a,b,t;
   int t=a;
   a=b;
   b=t;
   cout<<a<<endl;
   cout<<b;
   return 0;
}