/* Helloプログラム */

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