Score : $100$ points
We have removed $A$ balls from a box that contained $N$ balls and then put $B$ new balls into that box. How many balls does the box contain now?
Input is given from Standard Input in the following format:
$N$ $A$ $B$
Print the answer as an integer.
100 1 2
101
The box contained $100$ balls. After removing $1$ ball and putting $2$ new balls, it now contains $101$ balls.
100 2 1
99
100 1 1
100