#include <stdio.h>
int main() {
    int age;
    float height;
    printf("Enter your age and height (in cm): ");
    scanf("%d %f", &age, &height);  // %d for integer, %f for float input
    printf("Your age is %d and your height is %.1f cm.\n", age, height);
    return 0;
}