#include <stdio.h>

int main(void) {
	// your code goes here
	char *s= "First Name";
	float x= 12345;
	printf("%-15s%c\n", "First Name", ':');
	printf("%-15s%c\n", "Last Name", ':');
	printf("%-15s%c\n", "Age", ':');
	printf("%10.3f\n", (float)x);
	
	
	return 0;
}
