using System;
public class Program
{
public static void Main()
decimal? A = 1;
decimal? B = null;
Console.WriteLine(A <= B);
}