import java.io.PrintWriter; /** * Attempts to answer someone's questions. */ public class Whatever { public static void main(String[] args) { PrintWriter pen = new PrintWriter(System.out, true); pen.println("\n".length()); pen.close(); } // main } // class Whatever