x,y=input().split()
x=int(x)
y=int(y)
if x!=y:
    print('False')
else:
    print('True')