#include <stdio.h>

int main() {
    int age = 25;
    printf("Your age is %d years.\n", age);
    return 0;
}