Problem9401--ABC207 —— A - Repression

9401: ABC207 —— A - Repression

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

There are three cards on the desk, each with a positive integer written on it. The integers on the cards are $A$, $B$, and $C$.

You have chosen two cards and picked them up.

Find the maximum possible sum of the integers written on the picked cards.

Input

### Input

Input is given from Standard Input in the following format:

```
$A$ $B$ $C$
```

Output

### Output

Print the answer as an integer.

Constraints

### Constraints

-   $1 \leq A,B,C \leq 100$
-   All values in input are integers.

Sample 1 Input

3 4 5

Sample 1 Output

9
If you pick up two cards with 4 and 5, the sum of the integers will be 4+5=9.
There is no way to pick up cards with a greater sum, so we should print 9.

Sample 2 Input

6 6 6

Sample 2 Output

12

Sample 3 Input

99 99 98

Sample 3 Output

198

Source/Category