const string dataFileName = "Data.txt"; // Name of the input file const string reportFileName = "Report.txt"; // Name of the output file string NameOfLeader = ""; // Name of player with lowest score so far int ScoreOfLeader = INT_MAX; // Lowest score seen so far string nextName = ""; // Name just read from input file int nextScore = 0; // Score just read from input file int NumberOfPlayers = 0; // Counter for number of players int SumOfScores = 0; // Running total of all scores