100 atcoder#ABC152A. [ABC152A] AC or WA

[ABC152A] AC or WA

Score : 100100 points

Problem Statement

Takahashi is participating in a programming contest, AXC001. He has just submitted his code to Problem A. The problem has NN test cases, all of which must be passed to get an AC verdict. Takahashi's submission has passed MM cases out of the NN test cases. Determine whether Takahashi's submission gets an AC.

Constraints

  • 1N1001 \leq N \leq 100
  • 0MN0 \leq M \leq N
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN MM

Output

If Takahashi's submission gets an AC, print Yes; otherwise, print No.

3 3
Yes

All three test cases have been passed, so his submission gets an AC.

3 2
No

Only two out of the three test cases have been passed, so his submission does not get an AC.

1 1
Yes