#include<stdio.h>
int main(){
    int age;
    printf("enter your age:");
    scanf("&d,&age");
    printf("you are old.\n",age);
    return 0;
}