#include <stdio.h>

int main(void) {
	unsigned long long a  = 10000000000;
    printf("%lld\n",a);
	// your code goes here
	return 0;
}
