#include<stdio.h>
int main(){
int a;
float c;
scanf("%d %f",&a ,&c);
printf("Age: %d years\n",&a);
printf("height: %1.fcm\n",&c);
return 0;
}