Help
When I running they tell me try again import java.util.Scanner; abstract class Shape { int width; abstract void area(); } //your code goes here public class Square extends Shape { int width ; public Square (int width ){ this.width =width; } public void area(){ int area = width * width ; System.out.println(area ); } } public class Circle extends Shape { int width ; public Circle (int width ){ this.width =width ; } public void area(){ double area= Math.PI*width*width; System.out.println( area); } } public class Program { public static void main(String[ ] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); Square a = new Square(x); Circle b = new Circle(y); a.area(); b.area(); } }