package kr.hs.dgsw.java.first; public class Rectangle { int height; int width; int measureArea() { return this.height*this.width; } }