#include int main() { int my_score, your_score, wager = 10; cout << "wager = $" << wager << endl; cout << "Enter your score: "; cin >> your_score; cout << "Enter my score: "; cin >> my_score; cout << "my_score = " << my_score << endl; cout << "your_score = " << your_score << endl; if (my_score > your_score) { cout << "I win!\n"; wager = wager + 100; } else { cout << "I wish these were golf scores.\n"; wager = 0; } cout << "wager = $" << wager << endl; return 0; }