#include <stdio.h>

int main(void) {
	// your code goes here
    int age=18;
    int height=180;
    int weight=80;
    printf("age=%d,height=%d,weight=%d\n",age,height,weight);
	return 0;
}
