/* Helloプログラム */

#include <stdio.h>
 
main()
{
	int i;
	
	i = 50000 * 50000;
	
	printf("%d\n", i);
}