10502: ABC109 —— A - ABC333
[Creator : ]
Description
You are given integers $A$ and $B$, each between $1$ and $3$ (inclusive).
Determine if there is an integer $C$ between $1$ and $3$ (inclusive) such that $A \times B \times C$ is an odd number.
Determine if there is an integer $C$ between $1$ and $3$ (inclusive) such that $A \times B \times C$ is an odd number.
Input
Input is given from Standard Input in the following format:
```
$A$ $B$
```
```
$A$ $B$
```
Output
If there is an integer $C$ between $1$ and $3$ that satisfies the condition, print `Yes`; otherwise, print `No`.
Constraints
- All values in input are integers.
- $1 \leq A, B \leq 3$
- $1 \leq A, B \leq 3$
Sample 1 Input
3 1
Sample 1 Output
Yes
Let C=3. Then, A×B×C=3×1×3=9, which is an odd number.
Sample 2 Input
1 2
Sample 2 Output
No
Sample 3 Input
2 2
Sample 3 Output
No