using System;
public class Program
{
public static void Main()
for (int i = 0; i < 6 ; i++) {
Console.WriteLine("---------------------------");
Console.WriteLine("This will always be printed");
if (i == 4) {
continue;
}
Console.WriteLine("This is printed when i != 4. i currently is :" + i );