a=input().split( )
niu=int(a[0])
firend=int(a[1])
if niu == firend:
    print(True)
else:
    print(False)

比较相等是==