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