#include<iostream>
using namespace std;
int main(){
    int age= 18;
    float height=150.7;
    cout<<age "years"<<endl;
    cout<<height "cm"<<endl;
    return 0;
}