fork download
  1. using System;
  2.  
  3. namespace substract
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. Func<int,Func<int,int>>s=N=>P=>N-P++*(N+P/2);
  10. Console.WriteLine(s(2)(3)); //-10
  11. Console.WriteLine(s(100)(5)); //-415
  12. Console.WriteLine(s(42)(0)); //42
  13. Console.WriteLine(s(0)(3)); //-6
  14. Console.WriteLine(s(0)(0)); //0
  15. }
  16. }
  17. }
Success #stdin #stdout 0s 29664KB
stdin
Standard input is empty
stdout
-10
-415
42
-6
0