// (c) 1998 duane a. bailey import element.*; public class Printing { public static void main(String args[]) { ConsoleWindow c = new ConsoleWindow(); c.out.print("Watson, come here!"); c.out.println(" I want you!"); } } /* Watson, come here! I want you! */