#include <stdio.h>

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