fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. double resultado = Math.Pow(13, 2) * Math.Sqrt(25) - ((Math.Pow(4, 3) + Math.Sqrt(144)) + (Math.Pow(3, 5) - Math.Pow(2, 7)));
  8. Console.WriteLine(resultado);
  9. }
  10. }
  11.  
Success #stdin #stdout 0.08s 30396KB
stdin
Standard input is empty
stdout
654