﻿from math import *
def conjecture_C14(u):
  i=1
  while u!=1:
    if u%2==0:
      u=u//2
    else:
      u=3*u+1
    i=i+1
  return(i)

