package Syntax; abstract class Shape { Shape() { System.out.println("Object Intialize"); } abstract int calculateArea(int a, int b); }