So sánh #1

View as PDF



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

Tìm số lớn nhất trong 2 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
5 1
Output
YES
Test 3
Input
9 8
Output
YES

Comments

There are no comments at the moment.