#P58. 练11.5计算(a+b)/c的值

练11.5计算(a+b)/c的值

Description

Given three integers aa, bb, and cc, calculate the value of the expression a+bc\dfrac{a+b}{c}.

Input Format

Input consists of a single line with three integers aa, bb, and cc, separated by spaces. The constraints are 10,000<a,b,c<10,000-10,000 < a, b, c < 10,000.

Output Format

Output a single line with the value of the expression.

Sample

1 1 3
0