using System;
public class Program
{
public static void Main()
int x, y;
x = Convert.ToInt32(Console.ReadLine());
y = Convert.ToInt32(Console.ReadLine());
if(x > 0 || y > 0)
Console.WriteLine("x || y is greater than 0");
}
else
Console.WriteLine("x || y is NOT greater than 0");