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