using System;
public class Program
{
public static void Main()
// דוגמה לתוכנית עם משפט תנאי מורכב
int x,y;
x=int.Parse(Console.ReadLine());
y=int.Parse(Console.ReadLine());
if(x>y && x>4 && x<100 && y>4 && y<100)
Console.WriteLine("True");
}