From 343074164ac57e0e36321e2a2922bba5a33863a0 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 15 Sep 2025 16:58:33 +0800 Subject: [PATCH] add my key --- test1 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test1 diff --git a/test1 b/test1 new file mode 100644 index 0000000..28c7145 --- /dev/null +++ b/test1 @@ -0,0 +1,12 @@ +import time +a = int(input()) +while a != 1 : + if a % 2 == 0: + a = a/2 + print(a) + else : + a = 3*a + 1 + print(a) + time.sleep(0.5) +else: + print(a)