#include <stdio.h>

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