import java.awt.Rectangle;
public class AreaTester {
public static void main (String[] args) {
int x = 0; // Rectangle X location
int y = 0; // Rectangle Y location
int width = 0; // Rectangle width
int height = 0; // Rectangle height
Rectangle rect = new Rectangle(x, y, width, height); // Constructs the Rectangle object
// Your code goes here
}
}