def solution(n):
    count = 0
    
    while n & 1:
        count += 1
        n >>= 1
    
    return count

n = 175
ret = solution(n)
print("solution 함수의 반환 값은", ret, "입니다.")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: