#include <stdio.h>
#include <math.h>

int main(void) {
	unsigned long long ulongMax = pow(2.0, 64.0) - 1; 
	printf("%llu", ulongMax);
	return 0;
}
