duplicate lines by znz

class a{public static void main(String[]v)throws Exception{String s="";for(int c;(c=System.in.read())>0;){if(c==10){System.out.println(s+"\n"+s);s="";}else{s+=(char)c;}}}}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page