From 7510c88e7bf5332d9b3d8aed697b1e525c4edbf4 Mon Sep 17 00:00:00 2001 From: mecchmatProjects <33247296+mecchmatProjects@users.noreply.github.com> Date: Tue, 21 Mar 2023 12:25:04 +0200 Subject: [PATCH] Puzanov Task 15 --- Start.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Start.py diff --git a/Start.py b/Start.py new file mode 100644 index 0000000..46b3d9f --- /dev/null +++ b/Start.py @@ -0,0 +1,10 @@ +from start.rational_numb import * + +k = int(input()) +my_rationals = [rat_inp() for _ in range(k)] + +print(1/sum(my_rationals)) + + + +