Time left to live
🚨 Don't change the code below 👇
age = input("What is your current age? ")
🚨 Don't change the code above 👆
#Write your code below this line 👇
time_left = 90 - int(age)
weeks = 52 (time_left)
days = 365 (time_left)
months = 12* (time_left)
print(f"you are left with {months} months, {weeks} weeks or {days} days!")
Voters