#include<stdio.h>
int main()
{
    int a,b;
    printf("Age:%d years",&a);
    printf("Height:%d cm",&b);
    return 0;
}