x = 0;
while(x < 10)
{
    x++;
    if(x == 2)
    {
        continue;
    }
    if(x == 5)
    {
        break;
    }
    print(x);
}