#include <stdio.h>

int main(void) {
	// your code goes here
	int age = 18;
	int height = 175;
	int weight=63;
	printf("我的年龄是%d岁，身高是%d厘米,体重是%d千克",age,height);
	return 0;
}
