#include <iostream>
using namespace std;

int main() {
	cout << 1 << 1 << "\n" << (1 << 1) << "\n";
	return 0;
}