#include <iostream>

using namespace std;

#define SMTH 42

int main()
{
	for (unsigned q = 0; q < 3; ++q)
	{
		cout << SMTH << ' ';
		#define SMTH 7
		cout << SMTH << endl;
	}

	return 0;
}