#include <stdio.h>

int main(void) {
	// your code goes here
    int age = 19;
    int weight = 55;
    printf("我的年龄是%d岁，体重是%d公斤",age,weight);
	return 0;
}
