using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NestedForLoop
{
class Program
{
static void Main(string[] args)
{
/* variable definition */
int i, j;
// Simple Nested for loop
for (i = 1; i <= 12; i++)
{
for (j = 1; j <= 10; j++)
{
Console.Write(j + " ");
}
Console.WriteLine("\t\t" + i);
}
Console.WriteLine("-------------------------------------------");
Console.ReadLine();
}
}
}