#include <stdio.h>
int main(void) 
{
	// your code goes here
int age=18;
float height =161.8;
int weight = 42;
printf("我的年龄是%d 岁,我的身高是 %.1f cm,我的体重是%d kg",age,height,weight);
return 0;
}
