age1, age2 = map(int, input().split())

if age1 == age2:
    print("True")
else:
    print("False")