using System;
public class Program
{
public static void Main()
Console.WriteLine("Въведи 1 число: ");
int a = int.Parse(Console.ReadLine());
Console.WriteLine("Въведи 2 число: ");
int b = int.Parse(Console.ReadLine());
int c = a * b;
Console.WriteLine("Общо: " + c);
}