fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. String output = "Garbage";
  13. int count = 100;
  14. for(int i =0; i<count; i++){
  15. output+=i;
  16. }
  17. System.out.println(output+"\n");
  18. }
  19. }
Success #stdin #stdout 0.15s 50232KB
stdin
Standard input is empty
stdout
Garbage0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899