From 5aabe47f334dcc38e771b3c29098482bb068bd79 Mon Sep 17 00:00:00 2001 From: Vrinda Narayan Date: Sat, 26 Oct 2019 00:23:08 +0530 Subject: [PATCH] Problem 5 added in Python3 --- Python/5. Smallest multiple/vrindaaa.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Python/5. Smallest multiple/vrindaaa.py 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