#include <iostream>
using namespace std;
int main()
{
        int a = 3;
        int b = 100;
        a = b+(a=b)*0;
        cout<<a<<" "<<b<<endl;
}