import sequtils import strutils var b, c: int (b, c) = stdin.readLine.split.map(parseInt) if b == c: echo "Yes" else: echo "No"