fork(6) download
  1. using System;
  2. using System.Text;
  3.  
  4. namespace ConsoleApplication4
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. var sb = new StringBuilder();
  11. for (var i = 0; i < 5000000; i++)
  12. {
  13. sb.Append(i.ToString());
  14. }
  15. Console.WriteLine(sb.Length);
  16. }
  17. }
  18. }
  19.  
Success #stdin #stdout 1.36s 365760KB
stdin
Standard input is empty
stdout
33888890