using System;
public class Program
{
public static void Main()
Console.WriteLine("Let's print all the even numbers between 0 and 20 using a for loop: ");
for (int i = 0; i<=20; i++){
Console.Write(i++ + " ");
}