#include<bits/stdc++.h>
using namespace std;

int main(){
	long long n; cin >> n;
	cout << (1LL << __builtin_popcountll(n)) - 2 << '\n';
}