import java.awt.* ;

// A Frame that looks like a system output window
public class SystemOutput extends Frame {
                          
protected TextArea area= new TextArea("",15, 80);

// Constructor:
public SystemOutput() {
    super("System output window");
	add("Center", area);
	resize(600, 200);
	pack();
    move(50, 200);
	show();
    
  	}


}

