#D3072. Pray
Pray
Pray
C: Prayer (Pray)
Some twins are famous for praying before the contest.
There are four integers , and it seems unlucky if and are both odd numbers.
input
Four integers are given, separated by spaces.
output
Output "No" if you are unlucky, or "Yes" if not. But don't forget the last line break.
Constraint
- are integers greater than or equal to and less than or equal to
Input example 1
3 5 1 4
Output example 1
No
, , both odd numbers, so it's unlucky.
Input example 2
3 5 2 4
Output example 2
Yes
is odd, but is even, so good luck isn't bad.
Example
Input
3 5 1 4
Output
No
inputFormat
input
Four integers are given, separated by spaces.
outputFormat
output
Output "No" if you are unlucky, or "Yes" if not. But don't forget the last line break.
Constraint
- are integers greater than or equal to and less than or equal to
Input example 1
3 5 1 4
Output example 1
No
, , both odd numbers, so it's unlucky.
Input example 2
3 5 2 4
Output example 2
Yes
is odd, but is even, so good luck isn't bad.
Example
Input
3 5 1 4
Output
No
样例
3 5 1 4
No