#include<iostream>
using namespace std;
int main() {
    int age;
    double height;
Height (floating-point)
    if (cin >> age >> height) {
    cout << " Age: " << age << " years" <<endl:;
    cout << " Height: " << height << " cm" << endl;
    }
    return 0;
}