10833: ABC152 - A - AC or WA
[Creator : ]
Description
Takahashi is participating in a programming contest, AXC001. He has just submitted his code to Problem A.
The problem has $N$ test cases, all of which must be passed to get an AC verdict.
Takahashi's submission has passed $M$ cases out of the $N$ test cases.
Determine whether Takahashi's submission gets an AC.
The problem has $N$ test cases, all of which must be passed to get an AC verdict.
Takahashi's submission has passed $M$ cases out of the $N$ test cases.
Determine whether Takahashi's submission gets an AC.
Input
Input is given from Standard Input in the following format:
```
$N$ $M$
```
```
$N$ $M$
```
Output
If Takahashi's submission gets an AC, print
Yes
; otherwise, print No
.Constraints
- $1 \leq N \leq 100$
- $0 \leq M \leq N$
- All values in input are integers.
- $0 \leq M \leq N$
- All values in input are integers.
Sample 1 Input
3 3
Sample 1 Output
Yes
All three test cases have been passed, so his submission gets an AC.
Sample 2 Input
3 2
Sample 2 Output
No
Only two out of the three test cases have been passed, so his submission does not get an AC.
Sample 3 Input
1 1
Sample 3 Output
Yes