You have $20 Enter PERCENT raise: 10 After your raise you have $22 C:\Users\legok\source\repos\cst116-lab0-debugging-legokid1503\Ch 5 Debugging Project\x64\Debug\Ch 5 Debugging Project.exe (process 19064) exited with code 0. To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops. Press any key to close this window . . . PSEUDOCODE main(){ float money float raise print("you have $" + money) print(enter PRECENT raise) input(float raise) //We're treating the input like a percent. For example, if 1 is the input, that would be 1% or 0.01 money = money * 1 + raise * 0.01 print("After your raise, you have $") print(money) }