main(){ float money float raise print("You have $" + money) print("enter PERCENT raise.") input(raise) money = money * (raise * .01 + 1) print("You will have $" + money) }