#abc148a. [abc148_a]Round One

[abc148_a]Round One

Problem Statement

Takahashi is solving quizzes. He has easily solved all but the last one.

The last quiz has three choices: 11, 22, and 33.

With his supernatural power, Takahashi has found out that the choices AA and BB are both wrong.

Print the correct choice for this problem.

Constraints

  • Each of the numbers AA and BB is 11, 22, or 33.
  • AA and BB are different.

Input

Input is given from Standard Input in the following format:

AA BB

Output

Print the correct choice.


Sample Input 1

3
1

Sample Output 1

2

When we know 33 and 11 are both wrong, the correct choice is 22.


Sample Input 2

1
2

Sample Output 2

3