diff options
Diffstat (limited to 'progs/a384.py')
-rw-r--r-- | progs/a384.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/progs/a384.py b/progs/a384.py new file mode 100644 index 0000000..2d39a92 --- /dev/null +++ b/progs/a384.py @@ -0,0 +1,3 @@ +def multiples_of_num(m,n):
+ multiples_of_num= list(range(n,(m+1)*n, n))
+ return list(multiples_of_num)
\ No newline at end of file |