Java tutorial
import java.io.*; public class Main { public static void main(String[] args) { char c = 'a'; PrintWriter pw = new PrintWriter(System.out); // write char pw.write(c); pw.write('b'); // flush the writer pw.flush(); } }