Problem Description
Given two numbers and . Output the result of dividing by without a remainder.
Input Format
The first line contains two integers a and b, separated by a space. .
Output Format
Output a single integer - the answer.
Examples
Example 1
Input
15 4
Output
3
Example 2
Input
-3 2
Output
-1
Explanation
-3 / 2 = -1.5. Если отбросить дробную часть, получится -1. В Python для этого используйте int(a / b).