What is the output of the following program? public class Sh…

What is the output of the following program? public class Shape { public void Print() { System.out.println(“Shape’s Print()”); } } public class Polygon extends Shape{ public void Print() { super.Print(); System.out.println(“Polygon’s Print()”); } } public class Triangle extends Polygon { public void Print() { super.Print(); System.out.println(“Triangle’s Print()”); } } public class Main { public static void main(String[] args) { Triangle c = new Triangle(); c.Print(); } }