#include <stdio.h>

int main(void) {
	// your code goes here
int age=41;
int height=180;
int weight=120;
printf("老妈的年龄是%d岁，身高为%d厘米，体重为%d斤",age,height,weight);
	return 0;
}
