#include <stdio.h>

int main() {
    int age;
    float height;

    // Read age
    scanf("%d", &ag
    scanf("%f", &height);

    if (age >= 0 && age <= 150 && height > 30.0 && height <= 250.0) {
        printf("Age: %d years\n", age);
        printf("Height: %.1f cm\n", height);
    } else {
        printf("Invalid input\n");
    }

    return 0;
}