100 #ABC180A. [ABC180A] box

[ABC180A] box

Score : 100100 points

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.
  • 100N200100 \leq N \leq 200
  • 1A,B1001 \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.

100 1 2
101

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

100 2 1
99
100 1 1
100