Consider the following code snippet. What will be the output if the input `days` is ?
```
days = int(input())
years = days // 365
weeks = (days % 365) // 7
remaining_days = (days % 365) % 7
print("Years:", years)
print("Weeks:", weeks)
print("Days:", remaining_days)
```