namespace AtCoder; #nullable enable using System.Numerics; static class Extensions { public static T[] Repeat(this int time, Func F) => Enumerable.Range(0, time).Select(_ => F()).ToArray(); public static ulong ToFlag(this int i) { if (i < 0 || 63 < i) throw new IndexOutOfRangeException(); return 1UL << i; } public static bool OfFlag(this ulong value, int i) => (value & ToFlag(i)) > 0; public static ulong WithFlag(this ulong value, int i, bool f) => f ? (value | ToFlag(i)) : (value & ~ToFlag(i)); } class AtCoder { object? Solve() { var t = Int(); var ans = new ulong[t]; for (var i = 0; i < t; i++) { var n = Input(); var tns = (ulong)BitOperations.PopCount(n); var s = 0; for (var j = 60; j >= 0; j--) { if (!n.OfFlag(j)) continue; var x = j.ToFlag(); tns += x * (ulong)(j + s * 2) / 2; n = n.WithFlag(j, false); s++; } ans[i] = tns; } Out(ans); return null; } public static void Main() => new AtCoder().Run(); public void Run() { var res = Solve(); if (res != null) { if (res is bool yes) res = yes ? "Yes" : "No"; sw.WriteLine(res); } sw.Flush(); } string[] input = Array.Empty(); int iter = 0; readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false }; string String() { while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Trim().Split(' '), 0); return input[iter++]; } T Input() where T : IParsable => T.Parse(String(), null); int Int() => Input(); void Out(object? x, string? separator = null) { separator ??= Environment.NewLine; if (x is System.Collections.IEnumerable obj and not string) { var firstLine = true; foreach (var item in obj) { if (!firstLine) sw.Write(separator); firstLine = false; sw.Write(item); } } else sw.Write(x); sw.WriteLine(); } }