#include <iostream>
#include <string>
int f=10;

int main()
{
	int f=15;
	std::cout<<f<<" "<<::f;
	
}