0 out of 464 challenges solved
Write a Python function `find_quotient(n, m)` that takes two integers `n` and `m` as input and returns the quotient of their division rounded down to the nearest integer. Use integer division to achieve this. #### Example Usage ```python [main.nopy] find_quotient(10, 3) # Output: 3 find_quotient(4, 2) # Output: 2 find_quotient(20, 5) # Output: 4 ``` #### Constraints - The inputs `n` and `m` will be integers. - The divisor `m` will not be zero.
def find_quotient(n, m):
"""
Calculate the quotient of n divided by m, rounded down to the nearest integer.
Args:
n (int): The dividend.
m (int): The divisor.
Returns:
int: The quotient of the division.
"""
# Implement the function using integer division
pass