diff --git a/day 5: Loops b/day 5: Loops new file mode 100644 index 0000000..b068abb --- /dev/null +++ b/day 5: Loops @@ -0,0 +1,4 @@ +N = int(input()) + +for i in range(1, 11): + print(str(N) + " x " + str(i) + " = " + str(N * i))