#include <stdio.h>
int main() {
    int age;
    printf("19");
    scanf("d" ,&age);
    printf("you are %d years old./n", age);
    return 0;
}