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.WriteLine(i);
i++;
}