using System;
public class Program
{
public static void Main()
int x = 0;
int y = 1;
(bool, bool) v = (x < y, y > x);
Console.WriteLine(v);
}