/* Helloプログラム */

#include <stdio.h>
 
main()
{
	printf("今日の気温は%d度です",25);
	printf("今日は%d月%d日です",4,28);
}