#include <stdio.h>

int main(void) {
	// your code goes here
	float b=2.5;
	printf("b=%10.1f\n",b);
	return 0;
}
