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