Answer :
Answer:
def count_mutiples(num1,num2,N):#make function for call
count=0
if(num1>num2):#that will check which number is low and high
low=num2
high=num1
else:
high=num2
low=num1
for i in range(low,high+1):
if(i%N==0):
count=count+1
return(count)
Explanation: