#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 h")
    return 0;
}