#include #include using std::cout; using std::cin; using std::endl; int main() { float money = 123.45; float raise; cout << "You have $"; cout << money << endl; // Breakpoint 1 // Put a breakpoint on the following line cout << "Enter percent raise: "; cin >> raise; money = money * raise; cout << "After your raise you have $"; cout << money << endl; return 0; }