You are given 2 integers A, B. Print the integer part of their division!
### Input
- A single line contains two integer $A, B$.
### Output
- Print the integer part of $\frac{A}{B}$!
### Constraints
- $(1 \le A, B \le 1000)$.
### Example
Input:
```7 3```
Output:
```2```