odd lines by Roy van Rijn

class h{public static void main(String[]a)throws Exception{String e="";int i,r=1;while((i=System.in.read())>8){if(r>0)e+=(char)i;if(i==10)r=-r;}System.out.print(e);}}

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

download

return to the top page