Как найти кратные числа в Python

def multiples(m, count):
    for i in range(count):
        print(i*m)
Clear Cat