100 #ABC109A. [ABC109A] ABC333

[ABC109A] ABC333

Score : 100100 points

Problem Statement

You are given integers AA and BB, each between 11 and 33 (inclusive).

Determine if there is an integer CC between 11 and 33 (inclusive) such that A×B×CA \times B \times C is an odd number.

Constraints

  • All values in input are integers.
  • 1A,B31 \leq A, B \leq 3

Input

Input is given from Standard Input in the following format:

AA BB

Output

If there is an integer CC between 11 and 33 that satisfies the condition, print Yes; otherwise, print No.

3 1
Yes

Let C=3C = 3. Then, A×B×C=3×1×3=9A \times B \times C = 3 \times 1 \times 3 = 9, which is an odd number.

1 2
No
2 2
No