N = int(input()) ans = 2 * N while N: ans -= N N //= 2 print(ans)