#include <iostream>
using namespace std;

int main()
{
	int e = 10;
	int v = 12;

    //declaration of all the required variable used below
	for(int g=0;g<e;g++)
	{
		//some code here
	}

	for(int i=0;i<e;i++)
	{
		//some code here
	}

	for(int k=1;k<v;k++)
	{
		//some code here
	}


	cout << endl << "reaching here" << endl;

	for(int k=0;k<v;k++)
	{
         //some code here
	}

	cout << endl << "not printing this line" << endl;

	return 0;
}