using System;
using MyLibrary;
class Program
{
static void Main()
{
Console.Write("Введите a: ");
int a = int.Parse(Console.ReadLine());
Console.Write("Введите b: ");
int b = int.Parse(Console.ReadLine());
Calculator calc = new Calculator();
Console.WriteLine("Сумма: " + calc.Add(a, b));
Console.WriteLine("Произведение: " + calc.Multiply(a, b));
}
}