  #include <stdio.h>

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