Calculate the circumference of a triangle on the basis of the length of the sides.

driehoek

Input

Three integers, each on a separate line, representing the length of the sides $$a$$, $$b$$ and $$c$$ of a triangle.

Output

The circumference of the triangle.

Example

Input:

1234
666
789

Output:

2689