#include <stdio.h>

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