public static void Main()
Console.WriteLine("Írj be három egész számot!");
int a = Convert.ToInt32(Console.ReadLine());
int b = Convert.ToInt32(Console.ReadLine());
int c = Convert.ToInt32(Console.ReadLine());
Console.Write("Összege");
Console.WriteLine ((a+b)*c);