#include using namespace std; int games, gameCost = 60; // This assignment was worth 5 points. int main() { cout << "How many PS4 games would you like to buy? "; cin >> games; cout << "Your total cost is $" << games*gameCost << "." << endl; return 0; }