using System;
public class Program
{
public static void Main()
//Data Types: 3 Main Variables
//Only declare String
string athleteName = "Anthony Edwards";
//Only declare Integar
int athleteHighScore = 80;
Console.WriteLine("Player Name " + athleteName);
Console.WriteLine("Player High Score " + athleteHighScore);
}