n=int(input()) while not n == 1: print(n, end= ' ') if n%2==0: n //= 2 else: n *= 3 n += 1 if n == 1: print(n, end=' ')