#P1002. Sums of ABC——三数之和

Sums of ABC——三数之和

Statement

Given three numbers a,b,ca, b, c, find their sum.

Input

One line contains three integers a,b,ca, b, c separated by spaces, where 108<a,b,c<108-10^8 < a, b, c < 10^8.

Output

Output a single number representing a+b+ca+b+c on a single line.

Samples

3 4 5
12