#include <stdio.h>

int main(void)
{
	int x = 5.7;

	printf("値は%dです。\n", x);

	return 0;
}
