#include <stdio.h>

int main(void) {
    #include <stdio.h>

int main() {
    // Specified number of days to convert
    int days = 1329;  
    int years, weeks, remaining_days;

    // Calculate years
    years = days / 365;
    remaining_days = days % 365;

    // Calculate weeks from the remaining days
    weeks = remaining_days / 7;

    // Calculate remaining days after converting to years and weeks
    remaining_days = remaining_days % 7;

    // Display the results
    printf("Number of days: %d\n", days);
    printf("Years: %d\n", years);
    printf("Weeks: %d\n", weeks);
    printf("Days: %d\n", remaining_days);

    return 0;
}
	return 0;
}
