public class MainClass { public static void main(String[] argv) { System.out.println(); } } class Window { private int width = 0; private int height = 0; public void setSize(int w, int h) { this.width = w; this.height = h; } }