본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 6190번 Another Cow Number Game

by 현장 2024. 8. 26.

-Code

n = int(input())
cnt = 0

while n > 1:
    if n % 2 == 0:
        n = n // 2
    else:
        n = n * 3 + 1
    cnt += 1

print(cnt)