/* An abstract class is a class that has method with no implentation */

abstract class G {
	
	abstract void printGreeting();
}
