#include <iostream>
using namespace std;
int t = 1;

void func()
{
	int t = 2;
	cout << ::t;
}

int main() 
{
	int t = 3;
	func();
	return 0;
}