// ~cs35/maxes.cpp

#include "CS35lib.h"

int max (int first, int second)
{
	if (first>second) return first;
	return second;				// why no ELSE?
}



int main ()
{
	int a,b, high;
	
	cout <<"Enter 27 integers: ";
	
	while (counter< 27)
	{
		counter++
		cin>>number;
		high = max (number, high);
	}
	
	cout << "The higher of those is "<<high<<".\n";
	return 0;
}
	
