diff --git a/Python/5. Smallest multiple/vrindaaa.py b/Python/5. Smallest multiple/vrindaaa.py new file mode 100644 index 0000000..48b9bbc --- /dev/null +++ b/Python/5. Smallest multiple/vrindaaa.py @@ -0,0 +1,6 @@ +#Problem 5 done in Python3 +n = 1 +num = [20,19,9,17,4,5,7,13,11] +for i in num: + n *= int(i) +print(n) \ No newline at end of file