using System; namespace _642 { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); long x = 1; long ret = 0; while (n > x) { x *= 2; ret++; } long a = x - n; while (a > 0) { ret += a % 2; a /= 2; } Console.WriteLine(ret); } } }