using System;
public class Program
{
public static void Main()
double IRR = -0.919512676;
double NPV = (-749184)/Math.Pow(1+IRR,0.25)+(-166664)/Math.Pow(1+IRR,0.5) + (-160019)/Math.Pow(1+IRR,0.75) + (151855)/Math.Pow(1+IRR,1) + (-136605)/Math.Pow(1+IRR,1.25) + (-118712)/Math.Pow(1+IRR,1.5) +(128333)/Math.Pow(1+IRR,1.75);
Console.WriteLine(NPV);
}