/* Helloプログラム */

#include <stdio.h>
 
main()
{
	printf("%d * %d は %d です。", 10, 10, 100);
}