/* Helloプログラム */

#include <stdio.h>
 
main()
{
	int i;
	i = 50000*50000;   /* ここで、オーバーフロー＝情報あふれ*/
	printf("%d\n",i);
}