Problem D: 关系运算运用 3

Problem D: 关系运算运用 3

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

输入两个整数 $a,b$,如果 $a = b$,输出 Yes,否则输出 No。

Input

输入两个整数 $a,b\ (−1,000,000≤a,b≤1,000,000)$。

Output

输出格式见题目描述。

Sample 1 Input

5 0

Sample 1 Output

No

Sample 2 Input

-3 -3

Sample 2 Output

Yes

Sample 3 Input

1007 1007

Sample 3 Output

Yes