#include <iostream>

int x;
x = 42;

int main()
{
	std::cout << x << '\n';
}