#include <stdio.h>

int main(void) {
    long long unsigned int NUMBER = 4294967295ULL * 4294967295ULL;
    printf("%llu", NUMBER);
    return 0;
}
