#abc109a. [abc109_a]ABC333

[abc109_a]ABC333

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 AtimesBtimesCA \\times B \\times C is an odd number.

Constraints

  • All values in input are integers.
  • 1leqA,Bleq31 \\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.


Sample Input 1

3 1

Sample Output 1

Yes

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


Sample Input 2

1 2

Sample Output 2

No

Sample Input 3

2 2

Sample Output 3

No