public class Lab10 
{
	public static void main(String args[]) 
	{
		Student john= new Student("John Doe");

		john.setTestscore(55);

		System.out.println(john.getName() + " got a score of " + 
			john.getTestscore() + " on the exam.");

		john.setTestscore(-5);

		System.out.println(john.getName() + " got a score of " + 
			john.getTestscore() + " on the exam.");
	}
}