public class Program {


	public static void main(String[] args) {

		Student s;

		try {

		 s = new Student("A", "M", 80);

		}catch(Exception e) {
			System.exit(1);
		}


	       

	}
}
