#include<stdio.
h>
//break with nested while loop
int main()
{
//outer for loop
while(1)//1<5 => 1
{
int i=1;
//nested while loop
//inner for loop
while(i<5)
{
printf("\n Sunbeam Pune");
printf("\n Sunbeam Karad");
printf("\n Sunbeam Hinajawadi");
i++;
break;//it would terminate the inner while loop
}
}
}