Java tutorial
import java.io.*; public class Main { public static void main(String[] args) { long l = 1234567890L; PrintWriter pw = new PrintWriter(System.out); // print long pw.println(l); pw.println(987654321L); // flush the writer pw.flush(); } }