using System;
public class Program
{
public static void Main()
string x = Console.ReadLine();
string y = Console.ReadLine();
int x1 = Convert.ToInt32(x);
int y1 = Convert.ToInt32(y);
int m = x1 * y1;
Console.WriteLine("Produto entres dos valores é: " + m);
}