fork download
  1. c=int(input())
  2. while c!=1:
  3. if c%2==0: c/=2
  4. else: c=3*c+1
  5. print(c)
Success #stdin #stdout 0.07s 14136KB
stdin
5
stdout
16
8.0
4.0
2.0
1.0