# Monthly earnings and target savings
monthly_savings = 137501
target_savings = 500000000
# Calculate number of months to reach target savings
months_needed = target_savings / monthly_savings
# Convert months to years
years_needed = months_needed / 12
print(years_needed)
MathBot Answer:
MathBot is working on a solution to your problem.
