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

namespace pro7
{
    class Program
    {
        static void Main(string[] args)
        {
            /* multiplication of three nos*/
            Console.WriteLine("Enter First Number");
            int n1 = Convert.ToInt32(Console.ReadLine());
            Console.WriteLine("Enter Second Number");
            int n2 = Convert.ToInt32(Console.ReadLine());
            Console.WriteLine("Enter Third Number");
            int n3 = Convert.ToInt32(Console.ReadLine());
            int res = n1 * n2 * n3;
            Console.WriteLine("Multiplication Result is"  +  res);
            Console.ReadLine();
        }
    }
}


Output :


lg6