/**
 *
 * @author Ramana Isukapalli
 *
 */

public class Window {

    public int length;
    public int width;

    // Constructor
    Window ()
    {
        length = 30;
        width = 40;
    }

    Window (int l, int w)
    {
        length = l;
        width = w;
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        Window m = new Window();
        System.out.println ("length: " + m.length + " width: " + m.width);
        Window m2 = new Window (100, 200);
        System.out.println ("length: " + m2.length + " width: " + m2.width);
    }

}
