#include <stdio.h>

int main(void) {
	// your code goes here
	float f=12.34;

int n = printf("%f",f);
printf("\n%d", n);
	return 0;
}
