A / B - MarisaOJ: Marisa Online Judge

A / B

Time limit: 1000 ms
Memory limit: 256 MB
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```