#include <stdio.h>


int main(void) {
	// your code goes here
	char str[2];
	sprintf(str, "Value of Pi = %f", 3.14);
	
	puts(str);
	
	return 0;
}
