public class ComparableTester {

	public static void main(String[] args) {
		Integer num1 = new Integer(5);
		Integer num2 = new Integer(2);
		Integer num3 = new Integer(8);
		
		String s1 = "comparing";
		String s2 = "different";
		String s3 = "strings";
		
		/* 
		1. Use the compareTo method to compare the 
		   Integers and Strings initialized above.
		*/
		
		/*
		2. Add implementation to the Student class
		   so that it implements the Comparable interface
		*/
		
		/*
		3. Create at least two Student objects and 
		   use the compareTo method in the Student
		   class to compare them.
		*/		
	}

}