import sys
a,b = input().split()
int(a)
int(b)
if a>=b:
    print(True)
elif a<b:
    print(False)