100 atcoder#ABC109A. [ABC109A] ABC333
[ABC109A] ABC333
Score : points
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
.
3 1
Yes
Let . Then, , which is an odd number.
1 2
No
2 2
No