#ifndef NOSTUDENTS_CPP
#define NOSTUDENTS_CPP

class NoStudents{

	private:
		 int count;

	public:
		NoStudents():NoStudents(0){}
		NoStudents(int howMany):count(howMany){}
		int getCount() const{
			return count;
			}



};

#endif
