#include <stdio.h>
int main(void) 
{
	// your code goes here
int age=18;
int height =161.8;
int weight = 42;
printf("age= %d,height =%f,weight=%d",age,height,weight);
return 0;
}
