// Program Cetak Desimal
#include <stdio.h>

int main(void) {
	// your code goes here
	float x=12.3456789 ;
	printf ("%.3f\n" , x);
	
	return 0;
}
