/* Helloプログラム */

#include <stdio.h>
 
main()
{
	printf("今日の気温は %d 度です\n" , 25  );
	printf("今日は %d 年 %d 月 %d 日です\n" , 2025, 5, 12 );
}
