A - AC or WA Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100

問題文

高橋君は、プログラミングコンテスト AXC001 に参加しており、問題 A にコードを提出しました。
この問題には N 個のテストケースがあり、すべてのテストケースに正解した場合のみ提出は AC となります。
高橋君の提出は、N 個のテストケースのうち M 個のテストケースに正解しました。
高橋君の提出が AC となるか判定してください。

制約

  • 1 \leq N \leq 100
  • 0 \leq M \leq N
  • 入力はすべて整数である。

入力

入力は以下の形式で標準入力から与えられる。

N M

出力

高橋君の提出が AC となる場合は Yes, そうでない場合は No と出力せよ。


入力例 1

3 3

出力例 1

Yes

3 つのテストケースすべてに正解したので、AC となります。


入力例 2

3 2

出力例 2

No

3 つのテストケース中 2 つしか正解できなかったので、AC となりません。


入力例 3

1 1

出力例 3

Yes

Score : 100 points

Problem Statement

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.

Constraints

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

Input

Input is given from Standard Input in the following format:

N M

Output

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


Sample Input 1

3 3

Sample Output 1

Yes

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


Sample Input 2

3 2

Sample Output 2

No

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


Sample Input 3

1 1

Sample Output 3

Yes