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

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

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 64 MB

Description

给定$3$个整数$a$、$b$、$c$,计算表达式 $\frac{a+b}{c}$ 的值。

Input

输入仅一行,包括三个整数$a$、$b$、$c$, 数与数之间以一个空格分开。($-10,000 < a,b,c <10,000$)

Output

输出一行,即表达式的值。

Sample Input Copy

1 1 3

Sample Output Copy

0