#include <stdio.h>

int main(void) {
	// your code goes here
int age=18;
float h=1.78f;
int m=54;
printf ("我的年龄是%d\n",age);
printf ("我的身高是%fm\n",h);
printf ("我的体重是%dkg",m);
	return 0;
}
