#include <stdio.h>

int main(void)
{
    int age = 40;
    int days = age * 365;
    printf("今年%d岁,活了%d多天了\n", age, days);
    return 0;
}