14
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
for(int x = 1; x <= 10; x++)
8
{
9
for(int y = 1; y <= 10; y++)
10
Console.WriteLine("{0} * {1} = {2}", x, y, x * y);
11
Console.WriteLine();
12
}
13
}
14
}
Cached Result