Please read the new rule regarding the restriction on the use of AI tools. It applies starting from round 972. ×

B. Three Brothers
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Three brothers agreed to meet. Let's number the brothers as follows: the oldest brother is number 1, the middle brother is number 2, and the youngest brother is number 3.

When it was time for the meeting, one of the brothers was late. Given the numbers of the two brothers who arrived on time, you need to determine the number of the brother who was late.

Input

The first line of input contains two different integers a and b (1 ≤ a, b ≤ 3, a ≠ b) — the numbers of the brothers who arrived on time. The numbers are given in arbitrary order.

Output

Output a single integer — the number of the brother who was late to the meeting.

Example
Input
3 1
Output
2