#include <stdio.h>

int main(void)
{
	float height_cm;
	char name[40];

	printf("Enter your name: ");
	scanf("%s", name);
	printf("Enter your height in centimeters: ");
	scanf("%f", &height_cm);

	printf("%s, you are %.2f meters tall", name, height_cm / 100);
	return 0;
}