using System;
public class Program
{
public static void Main()
string str;
int a, b, c;
Console.WriteLine("Введіть число 1");
str=Console.ReadLine();
a=Convert.ToInt32(str);
Console.WriteLine("Введіть число 2");
b=Convert.ToInt32(str);
Console.WriteLine("Введіть число 3");
c=Convert.ToInt32(str);
double result = (a+b+c);
double umnoz = (a*b*c);
Console.WriteLine("Сума чисел = "+result+ "!!!");
Console.WriteLine("Результат множення = " +umnoz+ "!!!");
}