#include <stdio.h>
int main() {
    int aage=11;
    float height=50.8;
    printf("Age:%d years\n",age);
    printf("Height:%.1fcm\n",height);
    return 0;
}