def hosuu(a, b): num = 0 tmp = a while a <= b: num = num + 1 a = a + tmp return num print(hosuu(10, 100))