test case hidden and false
import java.awt.*; import java.util.Scanner; abstract class Shape{ int width; abstract void area(); } //your code goes here class Square extends Shape{ int s; Square(int xx){ s = xx; } public void area(){ s =(int)(s * s); System.out.println(s); } } class Circle extends Shape{ double c; Circle(int yy){ c =(double) yy; } public void area(){ c =(double)(c * c * (Math.PI)); System.out.println(c); } } 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(); } } ......2 test cases are true , the third failed and hidden ,how can I solve it?