#include <iostream>
using namespace std;

int main() {
	
	const int NUMSTORE = 5;
	int sales[NUMSTORE];
	
	for ( int i = 0; i < NUMSTORE ; ++i){
		cout << "Enter today's sales for store " << (i + 1) << ": ";
        cin >> sales[i]; 
        
        while ( sales [i] < 0 ){
        	
        	cout << "Sales cannot be negative. Please enter again: ";
            cin >> sales[i]; 
        }
        
        cout << "\nSALES BAR CHART\n(Each * = $100)\n";
        
        for ( int i = 0; i < NUMSTORE; ++i ){ 
        	
        	cout << "Store " << (i + 1) << ": ";
        	
        	 int numStars = sales[i] / 100; 
        	 for ( int j = 0; j < numStars; ++j){ 
        	 	cout << "* ";
        	 }
        cout << endl;
        	
        
        
        
	}









	return 0;
}