fork(2) download
  1. using System;
  2.  
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. Console.WriteLine(Add(-100, -2));
  8. }
  9.  
  10. static int Add(int a, int b)
  11. {
  12. for (int i = 0; i != b; i++)
  13. a += 1;
  14. return a;
  15. }
  16. }
  17.  
Success #stdin #stdout 1.28s 131520KB
stdin
Standard input is empty
stdout
-102