#include <stdio.h>

int main(void) {
	// your code goes here
int age=18;
int height=185;
int weight=125;
printf("李若琪年龄是%d岁,身高%d厘米,体重是%d斤",age,weight,height);
	return 0;
}
