fork(115) download
  1. import java.util.Random;
  2.  
  3. class WTF {
  4. public static void main(String[] args) {
  5. Random r = new Random(76880392499L<<11);
  6. String alphabet = " abcdefghijklmnopqrstuvwxyz";
  7. int n;
  8. while ((n = r.nextInt(alphabet.length())) > 0)
  9. System.out.print(alphabet.charAt(n));
  10. }
  11. }
Success #stdin #stdout 0.1s 32468KB
stdin
Standard input is empty
stdout
habrahabr