Score : $300$ points
Takahashi, Nakahashi and Hikuhashi have integers $A$, $B$ and $C$, respectively. After repeating the following operation $K$ times, find the integer Takahashi will get minus the integer Nakahashi will get:
However, if the absolute value of the answer exceeds $10^{18}$, print Unfair
instead.
Input is given from Standard Input in the following format:
$A$ $B$ $C$ $K$
Print the integer Takahashi will get minus the integer Nakahashi will get, after repeating the following operation $K$ times.
If the absolute value of the answer exceeds $10^{18}$, print Unfair
instead.
1 2 3 1
1
After one operation, Takahashi, Nakahashi and Hikuhashi have $5$, $4$ and $3$, respectively. We should print $5-4=1$.
2 3 2 0
-1
1000000000 1000000000 1000000000 1000000000000000000
0