add my key

This commit is contained in:
root 2025-09-15 16:58:33 +08:00
parent d82b9e5631
commit 343074164a

12
test1 Normal file
View File

@ -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)