public static void Main()
Console.WriteLine("Габриела 8а клас 7номер");
Console.Write("Enter first number: ");
int a = Int32.Parse(Console.ReadLine());
Console.Write("Enter second number: ");
int b = Int32.Parse(Console.ReadLine());
Console.Write("Enter third number: ");
int c = Int32.Parse(Console.ReadLine());
Console.WriteLine("{0}, {1}, {2}", a, b, c);