Java tutorial
import java.io.*; public class Main { public static void main(String[] args) { int i = 1234; PrintWriter pw = new PrintWriter(System.out); // print int pw.print(i); // change the line pw.println(); // print another int pw.print(567); // flush the writer pw.flush(); } }