#include <stdio.h>

int main() {
    int age;
printf("Enter your age: ");
scanf("%d", &age);
printf("You are &d years old.\n",age);
return 0;
}