#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("Age: %d years\n,Height: %d cm \n");
    return 0;
}