using System;
public class Program
{
public static void Main()
Console.WriteLine("введите 2 числа в диапазоте от 0 до 10 для их умножения");
int x = Convert.ToInt32(Console.ReadLine())%10;
int y = Convert.ToInt32(Console.ReadLine())%10;
Console.WriteLine(y + " * "+x+" = "+(x*y) );
}