diff --git a/30 Days of Code/Day 05/Loops.py b/30 Days of Code/Day 05/Loops.py new file mode 100644 index 0000000..f23a01d --- /dev/null +++ b/30 Days of Code/Day 05/Loops.py @@ -0,0 +1,3 @@ +n = int(raw_input().strip()) +for i in range(1,11): + print ("{} x {} = {}".format(n, i, (n*i)))