using static System.Console;
const int monthlyWeightLoss = 4;
WriteLine("What’s your starting weight?");
var enteredWeight = ReadLine();
int startingWeight = int.Parse(enteredWeight);
WriteLine("Here’s your expected weight loss over the next six months if you cut 500 calories a day from your diet.");
for (count = 1; count <= 6; count = count + 1)
WriteLine($"Month {count}: {startingWeight - (monthlyWeightLoss * count)}");