#include <stdio.h>

int main(void) {
	// your code goes here
	int a=18;
    int we=60;
    int h=1.67;
    printf("我的年龄是%d岁,我的体重是%d千克,我的身高是%f米",a,we,h);
    return 0;
}
