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