#P448. 【例81.1】 计算(a+b)/c的值

【例81.1】 计算(a+b)/c的值

Description

Given three numbers aa, bb, and cc, calculate the floor value of the expression .

Input Format

Three integers aa, bb, and cc. For 100% of the test cases, 10000a,b,c10000-10000≤a,b,c≤10000.

Output Format

Output a single line containing the value of the expression. If the divisor is 00, output "Division by zero condition".

Sample

1 1 3
0