#include<stdio.
h>
int main()
{
int i=1;
while(i<5)//1<5 => 1
{
printf("\n Sunbeam Pune");
printf("\n Sunbeam Karad");
if(i==1)//1==1 =1
continue;
//continue will skip all the stmt just after it and continue the iterations
//of loop(unlike break )
printf("\n Sunbeam Hinajawadi");
if(i==2)//2==2 => 1
break;
i++;//2
}