public static void Main()
DateTime startTime = new DateTime(2021, 6, 16, 15, 00, 00);
DateTime currentTime = DateTime.Now;
TimeSpan diff = currentTime - startTime;
int uptime = Convert.ToInt32(Math.Round(diff.TotalHours, 0));
Console.Write("insert hours left: ");
int hrsLeft = Convert.ToInt32(Console.ReadLine());
int result = (uptime + (hrsLeft - 15)) * 60;
Console.WriteLine("\nInside A Mind streamathon statistics \n------------------------------------");
Console.WriteLine("estimated time streamed: ≈" + uptime + " hour(s) OR " + uptime/24 + " day(s) and " + uptime%24 + " hour(s)");
Console.WriteLine("estimated earnings: $" + result);
Console.WriteLine("Toxic Waste(s) consumed: " + (result/500));
Console.WriteLine("Hot pepper(s) consumed: " + (result/3000));
Console.WriteLine("Hot Tub Stream goal reached: " + tubStrm);
Console.WriteLine("UwU OwO ØwØ UwU OwO ØwØ");