------
## 最终结论
```python
def multiples_of_num(m, n):
    return [n * i for i in range(1, m + 1)]
```