fork download
  1. import java.util.zip.Inflater;
  2.  
  3. public class Main {
  4. public static void main(String[] a) throws Exception {
  5. byte[] r = new byte[727];
  6. Inflater i = new Inflater();
  7. i.setInput(new sun.misc.BASE64Decoder().decodeBuffer("eNptklFu3DAMRK8yf9sA6V6iaIDtLWiJXhOVJVek7fr2pWSnSIB8Sh4/amb4wJI4Phk2kYE3rgeWWp6VZuxiE+YDmWZGyRCDTpQSBsZexYwzhgP+8Rvl2JShfKfVplL1FTKC8vGC9qnDHxjXlA6sOXJVO+/5fdodPz8Nf0DXYf44krNJZQf4oLJn7KX+dlhiVRQn1V2UQWZVhtU43p3xaZa/gQJFniUgik4ls5rbK+bunCs5pDWyuo3lkPw8qVi4eEY37QNf4WxQ0gIa2KzLKkYKksSon6/f7/hR4hWsKFRmSVRhpeVysbtHVfF0F1JrqKWyulVP320/2fx9CJWjR7E7qlXUc+O/S6LsE0v+ymmThJKV/6ycg/c3fmneH0bwwGNX3N5uGMvJD4lUG/l9QQoib8W45c+jy0zbZWKqudn+RRu1fWir0c5XTVehHXV2qd7Q1oFD76sVu10DjCT1lWmU/8uhH+zRkLiv3aGcxq69ejq1s+vu/wB5UQmy"));
  8. i.inflate(r);
  9. System.out.write(r);
  10. }
  11. }
  12.  
Success #stdin #stdout 0.06s 215552KB
stdin
Standard input is empty
stdout
I pledge that every program with my name on it shall be written by me (and my co-authors, if any) and that I fully understand the program. Every program I submit shall be entirely my own work unless otherwise attributed. I understand that academic dishonesty not only includes copying other people's work, but also abetting or facilitating copying. Code that is similar to any other submission past or present will get no credit whatever the explanation. I understand that the consequence of academic dishonesty is a grade of 'F' for the class. I pledge to devote my efforts to learning Java by writing my own programs. I shall strive to be attentive to detail and write programs understandable by myself and other programmers.