Divide nuts equally between squirrels

Report a typo

N squirrels found K nuts and decided to divide them equally. Determine how many nuts each squirrel will get and print the result. The answer should be an integer.

Tip: Mind the order of the variables!

Input data format

There are two positive numbers N and K, each of them is not greater than 10000.

Sample Input 1:

3
14

Sample Output 1:

4
Write a program in Python 3
# put your python code here
___

Create a free account to access the full topic