For-6

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace DongulerFor6
{
    class Program
    {
        static void Main(string[] args)
        {
            for (int i = 1; i < 10; i++)
            {
                for (int k = 1; k < 10; k++)
                {
                    // \t tab etkisi yarat
                    Console.Write("{0}x{1}={2}\t",i,k,i*k);
                }
                Console.WriteLine();
            }

            Console.ReadKey();
        }
    }
}