#include <stdio.h>
int main() {
    int age = 25;
    printf("Your age is: %d\n", age);   // %d is used for integer output
    return 0;
}