Score : $100$ points
We have $A$ balls with the string $S$ written on each of them and $B$ balls with the string $T$ written on each of them.
From these balls, Takahashi chooses one with the string $U$ written on it and throws it away.
Find the number of balls with the string $S$ and balls with the string $T$ that we have now.
Input is given from Standard Input in the following format:
$S$ $T$ $A$ $B$ $U$
Print the answer, with space in between.
red blue 3 4 red
2 4
Takahashi chose a ball with red
written on it and threw it away.
Now we have two balls with the string $S$ and four balls with the string $T$.
red blue 5 5 blue
5 4
Takahashi chose a ball with blue
written on it and threw it away.
Now we have five balls with the string $S$ and four balls with the string $T$.