//  Yousef Rabah         Oct. 9th, 2001        DRAWER 1602


#include "CS35lib.h"

char plural(int how_many)
	{
		if(how_many != 1) 
		{
			return 's';
		} 
	
	}

int main ()
{
	int how_many;
	cout<<"How many cows do you have? ";
	cin>>how_many;
	cout<<"You have "<<how_many<<" cow"<<plural(how_many)<<".\n";
	
	return 0;

}

/*

OUTPUT
How many cows do you have? 1
You have 1 cow.
[rabahyo@quark CS35]$ ./a.out
How many cows do you have? 15
You have 15 cows.

*/
