#abc109a. [abc109_a]ABC333
[abc109_a]ABC333
Problem Statement
You are given integers and , each between and (inclusive).
Determine if there is an integer between and (inclusive) such that is an odd number.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
If there is an integer between and that satisfies the condition, print Yes
; otherwise, print No
.
Sample Input 1
3 1
Sample Output 1
Yes
Let . Then, , which is an odd number.
Sample Input 2
1 2
Sample Output 2
No
Sample Input 3
2 2
Sample Output 3
No