using System;
public class Program
{
static bool Mybool ( int x, int y)
if (x>0 && y<0)
return true;
else
return false;
}
public static void Main()
bool num;
num = Mybool (8,-2);
Console.WriteLine(num);