Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- coins = 0
- passed_years = 0
- passed_days = 0
- for x in range(1, 9999999):
- passed_days += 1
- if x % 365 == 0:
- passed_years += 1
- coins_per_day = (0.00000001 * max(1, 8 - passed_years) * 5760) * 1
- coins += coins_per_day
- if coins >= 1 or passed_years == 99:
- break
- print(passed_years)
- print(passed_days % 365)
- print(coins)
Advertisement
Add Comment
Please, Sign In to add comment