#P1480. Division of Two Integers

    ID: 14766 Type: Default 1000ms 256MiB

Division of Two Integers

Division of Two Integers

Given two integers aa and bb, compute and output their quotient ab\frac{a}{b}. You may assume that b0b \neq 0.

inputFormat

The input contains two space-separated integers aa and bb on a single line. It is guaranteed that b0b \neq 0.

outputFormat

Output a single integer which is the quotient of aa divided by bb. (Integer division is used.)

sample

10 2
5