<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
public class Shape {
	protected float x;
	protected float y;

	public Shape(float x, float y) {
		this.x = x;
		this.y = y;
	}
	
	@Override public boolean equals(Object other) {
		// TODO
		return false;
	}
	
	public static float sumAreas(Shape[] shapes) {
		// TODO:
		return 0;
	}
	
	public static void main(String[] args) {

	}
}
</pre></body></html>