def g(t,c):
if t==1:
return 0
h=1<<(len(format(t,"b"))-1)
d=t-h
if d==0:
return t*t//4+g(t//2,c) if c<=t//2 else t*t//2+g(t,c-t//2)
elif c>h:
return h*h+g(2*h-d,c-h)
elif c>h-d:
return h*h+g(d,c+d-h)
elif c<=d:
return h*h//2+g(d,c)
else:
return h*h//2+g(2*h-t,c)
F=[1,1]
for i in range(2,46):
F.append(F[-2]+F[-1])
print sum(g(F[t],F[t-1]) for t in range(2,46))