
class ShapeTest {
	public static void main(String[] args) {
		Square s = new Square(5);
		System.out.println(s.getArea());
	}
}
