public static void Main()
Console.WriteLine("Input first integer: ");
x = int.Parse(Console.ReadLine());
Console.WriteLine("Input second integer: ");
y = int.Parse(Console.ReadLine());
Console.WriteLine("Check if one is negative and one is positive:");
Console.WriteLine((x < 0 && y > 0) || (x > 0 && y < 0));