From a465f6926656dd4348bba8b507beb7fd9b0bdf4f Mon Sep 17 00:00:00 2001 From: EinKaffeeBitte <163449566+EinKaffeeBitte@users.noreply.github.com> Date: Thu, 21 Mar 2024 13:40:23 +0000 Subject: [PATCH] Update main.py Added an "input()" at the end so the program will not exit immediately after finish. --- main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 716cd0d..80abfb1 100644 --- a/main.py +++ b/main.py @@ -104,4 +104,6 @@ def i2l(inte): d = d + 2 i = i + 1 -print(pii) \ No newline at end of file +print(pii) +print("Press anything to exit...") +input()