#include <stdio.h>

int main(void) {
	// your code goes here
    int age = 19;
    int high = 177;
    int weight = 70;
    printf("我的年龄是%\d岁\n我的身高是%\d厘米\n我的体重是%d千克\n",age,high,weight);
	return 0;
}
