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