#Z12103. 计算(a+b)/c的值

计算(a+b)/c的值

Description

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

Input Format

The input consists of a single line containing three integers aa, bb, and cc, separated by spaces. (10,000<a,b,c<10,000-10,000 < a, b, c < 10,000, and cc is not equal to 00.)

Output Format

Output a single line containing the value of the expression.

1 1 3

0