So sánh #2

View as PDF



Problem types
Points: 10 (p) Time limit: 1.0s Memory limit: 256M Input: stdin Output: stdout

So sánh hai số \(a, b\)

Input

  • Gồm một dòng duy nhất chứa hai số nguyên \(a, b\) (\(-10^{9} \leq a, b \leq 10^{9}\)).

Output

  • Gồm một dòng duy nhất in ra YES nếu \(a = b\), ngược lại in ra NO.

Example

Test 1
Input
1 2
Output
NO
Test 2
Input
1 1
Output
YES
Test 3
Input
10 2 
Output
NO

Comments

There are no comments at the moment.