#include using namespace std; int main() { int total=100; int new_quantity=0; cout << "Starting amount: " << total << endl; cout << "Enter in the amount of items received: "; cin >> new_quantity; total=total+new_quantity; cout << "New total is: " << total << endl; return 0; }