#include <stdio.h>

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