#agc024a. [agc024_a]Fairness
[agc024_a]Fairness
Problem Statement
Takahashi, Nakahashi and Hikuhashi have integers , and , respectively. After repeating the following operation times, find the integer Takahashi will get minus the integer Nakahashi will get:
- Each of them simultaneously calculate the sum of the integers that the other two people have, then replace his own integer with the result.
However, if the absolute value of the answer exceeds , print Unfair
instead.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the integer Takahashi will get minus the integer Nakahashi will get, after repeating the following operation times. If the absolute value of the answer exceeds , print Unfair
instead.
Sample Input 1
1 2 3 1
Sample Output 1
1
After one operation, Takahashi, Nakahashi and Hikuhashi have , and , respectively. We should print .
Sample Input 2
2 3 2 0
Sample Output 2
-1
Sample Input 3
1000000000 1000000000 1000000000 1000000000000000000
Sample Output 3
0