|  |  | @ -52,7 +52,16 @@ input_data(istream& in, bool prompt) { | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | int main() { |  |  |  | int main(int argc, char* argv[]) { | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     if (argc > 1) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         for (int i = 0; i < argc; ++i) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |             cerr << "argv[" << i << "] = " << argv[i] << endl; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |         } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     } | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  |     return 0; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |     curl_global_init(CURL_GLOBAL_ALL); |  |  |  |     curl_global_init(CURL_GLOBAL_ALL); | 
			
		
	
		
		
			
				
					
					|  |  |  |     auto in = input_data(cin, true);                                             //input data
 |  |  |  |     auto in = input_data(cin, true);                                             //input data
 | 
			
		
	
		
		
			
				
					
					|  |  |  |     auto bins = make_histogram(in.numbers, in.bin_count);               //calculating bin size for the histogram
 |  |  |  |     auto bins = make_histogram(in.numbers, in.bin_count);               //calculating bin size for the histogram
 | 
			
		
	
	
		
		
			
				
					|  |  | 
 |