#abc075a. [abc075_a]One out of Three

[abc075_a]One out of Three

Problem Statement

You are given three integers, AA, BB and CC.
Among them, two are the same, but the remaining one is different from the rest.
For example, when A=5,B=7,C=5A=5,B=7,C=5, AA and CC are the same, but BB is different.
Find the one that is different from the rest among the given three integers.

Constraints

  • \-100leqA,B,Cleq100\-100 \\leq A,B,C \\leq 100
  • AA, BB and CC are integers.
  • The input satisfies the condition in the statement.

Input

Input is given from Standard Input in the following format:

AA BB CC

Output

Among AA, BB and CC, print the integer that is different from the rest.


Sample Input 1

5 7 5

Sample Output 1

7

This is the same case as the one in the statement.


Sample Input 2

1 1 7

Sample Output 2

7

In this case, CC is the one we seek.


Sample Input 3

-100 100 100

Sample Output 3

-100