#include <stdio.h>

void test(long long x) {
	printf("%lld\n", x);
	printf("%I64d\n", x);
}

int main() {
	test(1LL << 30);
	test(1LL << 31);
	test(1LL << 32);
	test(1LL << 33);
}