atcoder#AGC024A. [AGC024A] Fairness
[AGC024A] Fairness
Score : points
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.
1 2 3 1
1
After one operation, Takahashi, Nakahashi and Hikuhashi have , and , respectively. We should print .
2 3 2 0
-1
1000000000 1000000000 1000000000 1000000000000000000
0