Java tutorial
import java.io.*; public class Main { public static void main(String[] args) { int i = 70; PrintWriter pw = new PrintWriter(System.out); // write integer as ASCII characters pw.write(i); pw.write(76); // flush the writer pw.flush(); } }