fork download
  1. using System;
  2.  
  3. public class Program
  4. {
  5. public static void Main()
  6. {
  7. const int x = int.MaxValue;
  8.  
  9. for (int i = 0; i < x; i++)
  10. {
  11. Console.WriteLine(" " + Environment.NewLine);
  12.  
  13. if (i == (x - 1))
  14. {
  15. i = 0;
  16. }
  17. }
  18. }
  19. }
Runtime error #stdin #stdout 0.1s 27048KB
stdin
Standard input is empty
stdout