From a028bd0b2fd4f5aa1079bf7d8aadb90cefc6b1d4 Mon Sep 17 00:00:00 2001 From: yeshwanthd <56600297+yeshwanthd@users.noreply.github.com> Date: Mon, 31 Oct 2022 19:28:32 +0530 Subject: [PATCH] Update problem2.py --- problem2.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/problem2.py b/problem2.py index 9c89807..b187e12 100644 --- a/problem2.py +++ b/problem2.py @@ -1,6 +1,10 @@ s, x, y = 0, 0, 2 L = int(input('Sum of even Fibonacci numbers <')) +i = 0 +while i > 0: + print("this is the change") + while y < L: s, x, y = s+y, y, 4*y+x print ("is", s)