Day of the Week by Kobuzou(date)

class A{public static void main(String[]a)throws Exception{byte[]b=new byte[9999];int n=System.in.read(b);for(String l:new String(b,0,n).split("\n"))System.out.println(new java.util.Date(l.replace(' ','/')).getDay());}}

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

download

return to the top page