#abc180a. [abc180_a]box

[abc180_a]box

Problem Statement

We have removed AA balls from a box that contained NN balls and then put BB new balls into that box. How many balls does the box contain now?

Constraints

  • All values in input are integers.
  • 100leqNleq200100 \\leq N \\leq 200
  • 1leqA,Bleq1001 \\leq A,B \\leq 100

Input

Input is given from Standard Input in the following format:

NN AA BB

Output

Print the answer as an integer.


Sample Input 1

100 1 2

Sample Output 1

101

The box contained 100100 balls. After removing 11 ball and putting 22 new balls, it now contains 101101 balls.


Sample Input 2

100 2 1

Sample Output 2

99

Sample Input 3

100 1 1

Sample Output 3

100