using System;
public class Program
{
public static void Main()
decimal? amount = 156;
Console.WriteLine(amount <= 170);
amount = null;
}