fork download
  1. n1 = int(input())
  2. n2 = int(input())
  3. count = 0
  4. for c in range(n1, n2):
  5. if c % n1 == 0:
  6. count += 1
  7. print('O numero {} tem {} multiplos menores que {}.'.format(n1, count, n2))
  8.  
  9. #https://pt.stackoverflow.com/q/449499/101
Success #stdin #stdout 0.02s 9144KB
stdin
3
44
stdout
O numero 3 tem 14 multiplos menores que 44.