# Example 2

using System;

class MainClass
{
  public static void Main ()
  {
    for (int i = 1; i <= 20; i++)
    {
      Console.WriteLine($"{i} x {2} = {i * 2}");
    }
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
Last Updated: Apr 26, 2020, 5:13 AM