#include <stdio.h>

int main(void) {
	// your code goes here
    int age = 19;
    int high = 177;
    int weight = 70;
    printf("age = %\d,high = %\d,weight = %d",age,high,weight);
	return 0;
}
