#include <stdio.h>

int main(void) 
{
	double height , weight ;

	printf("enter the height \n");
	scanf("%lf" , &height);

	printf("enter the weight \n");
	scanf("%lf" , &weight);

	printf("you height is %f cm \n", height);
	printf("you weight is %f kg \n", weight);

	return 0;
}