public static void Main()
Console.Write("Enter a= ");
int a = Int32.Parse(Console.ReadLine());
Console.Write("Enter b ");
int b = Int32.Parse(Console.ReadLine());
Console.Write("Enter c ");
int c = Int32.Parse(Console.ReadLine());
Console.WriteLine("{0}, {1}, {2}", a, b, c);