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