using System;
public class Program
{
public static void Main()
for(int i = 0; i < 21; i++)
if(i==10)
continue;
}
Console.WriteLine(i);
//CONTINUE EXAMPLE: (skips the loop when a certain criteria is satisfied but continues onto the next step)