6 lines
106 B
Python
6 lines
106 B
Python
|
def hailstone(n):
|
||
|
print(n)
|
||
|
if n != 1:
|
||
|
if n%2: hailstone(3*n+1)
|
||
|
else: hailstone(n//2)
|