// editor1
#include<stdio.h>
int main()
{
    int age;
    float height;
    printf("Enter the age:");
    scanf("%d",&age);
    printf("Enter the height(in centimeters):");
    scanf("%f",&height);
    printf("%d years",age);
    printf("%f cm",height);