#include <iostream>
using namespace std;

int main() {
	
	int x =5;
	{
		cout<<"Before Variable in the Local scope "<<x<<endl;
		int x =10;
		cout<<"After in the local scope "<<x<<endl;
	}
	cout<<endl;
	cout<<"Printing in the global scope "<<x<<endl;
	return 0;
}