Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- centuries = int(input())
- years = centuries * 100
- days = int(years * 365.2422)
- hours = days * 24
- minutes = hours * 60
- print(f'{centuries} centuries = {years} years = {days} days = {hours} hours = {minutes} minutes')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement