#include <iostream>
using namespace std;

int main() {
	for (int i = 0; i < 2; i++) {
		bool a[50];
		if (i == 0)
			for (int j = 0; j < 50; j++)
				a[j] = true;
		cout << a[25] << "\n";
	}
	return 0;
}