why this code fails 4th test case on hovercraft code coach?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sololearn { class Program { static void Main(string[] args) { long hovercraft = Convert.ToInt64(Console.ReadLine()); long cost = 2000000; long allcost = cost * hovercraft; long sell = 3000000; long allsold = sell * hovercraft; long all = (allsold - allcost) - 1000000; if (all >= 7000000) { Console.WriteLine("Profit"); } else if (all < 0) { Console.WriteLine("Loss"); } else { Console.WriteLine("Broke Even"); } } } }