#include<stdio.h>
int main(){
    int age;
    int height;
    printf("Enter the age in years:");
    scanf("%d",&age);
    printf("Enter the height in centimeters:");
    scanf("%d,&height");
    printf("your age is %d years and your height id %d centimeters.\n",age,height);
    return 0;
}