/** Returns the area of a Rectangle with the specified width and height. @param width The width of the Rectangle. @param height The height of the Rectangle. @return The area of the Rectangle. */ int area(int width,int height){return width*height;}