#include <stdio.h>

int main(void) {
	// your code goes here
int age=18;
int height=170;
printf("李若琪的的年龄是%d岁，身高是%d厘米",age,height);
	return 0;
}
