fork download
  1. using System;
  2.  
  3. namespace ConsoleApplication
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int iters = 100000000;
  10. double x = 10,result = 0;
  11. for(int i = 0; i < iters; i++)
  12. result = x*x;
  13. Console.WriteLine(result);
  14. Console.ReadKey();
  15. }
  16. }
  17. }
Success #stdin #stdout 0.15s 33936KB
stdin
Standard input is empty
stdout
100