#角谷猜想
n=int(input())
while(n != 1):
    if n %2 ==0:
        n=n/2
    else:
        n=n*3+1
    n=int(n)
    print(n)

0 条评论

目前还没有评论...