// editor2
#include<iostream>
using namespace std;
int main(){
    int Age = 11;
    float Height = 50.8;
    cout<<"age:"<<age<<"years"<<endl;
    cout<<"height:"<<height<<"cm";
    return 0;
}