#include <iostream>
using namespace std;

int main() {

	int x = 1;
	switch (x)
	{
		case 1 : 
			if(1)
			{
				if(2)
				{
					if(3)
					{
						std::cout<<"i am here "<<std::endl;
						break;
						std::cout<<"i am here 2"<<std::endl;
					}
											std::cout<<"i am here 4"<<std::endl;

				}
										std::cout<<"i am here 5"<<std::endl;

			}
									std::cout<<"i am here 6"<<std::endl;

			break;
		default : 
			break;
	}
	
	std::cout<<"i am here 3"<<std::endl;

	return 0;
}