#include<stdio.h>
int main()
{
    int age=20
    float height=175.2
    printf("%f"'&age);
    printf("%f",&height);
    return 0;
}