print("Let's calculate your budget.") income = int(input("What was your paycheck?\n>")) savings = int(input("What percentage goes to savings?\n>")) post_savings = ((100 - savings)/100) * income true_save = (savings/100) * income print(f"You'll have {post_savings} after you put money away.") print(f"and you'll have {true_save} in the bank!") rent = int(input("What is rent this month?\n>")) nec1 = post_savings - rent #necessary expense one print(f"Your budget without rent is {nec1}") spencer = int(input("How much do you want to put towards debt?\n>")) nec2 = nec1 - spencer #necessary expese two print(f"So now you have {nec2} money left.") days = int(input("How many days until your next paycheck?\n>")) budget = nec2 / days print(f"Your budget per day is {budget}.") print(f"That is unless you want to buy something with your {budget}.") #FUNSTUFF print("If you want to buy something this pay period, enter its price here") fun_thing = int(input(">")) fun_budget = nec2 - fun_thing print(f"You'll have {fun_budget} after that purchase.") fun_days = fun_budget / days print(f"Which leaves {fun_days} left per day.")