Devinez rapidement pour les nombres divisibles entre deux nombres
import math
def solution(A, B, K):
b = math.floor(B/K)
a = math.floor((A-1)/K)
return b - a
Ghaith Alzin