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