using System;
public class Program
{
public static void Main()
int a, b;
Console.WriteLine("a:");
a = Int32.Parse(Console.ReadLine());
Console.WriteLine("b:");
b = Int32.Parse(Console.ReadLine());
bool rez = (a > 0) && (b > 0);
Console.WriteLine("You have entered 2 digs {0}, {1}, the result is {2}", a, b, rez );
}