// 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;
}