public static void Main()
Console.Write("What is the name of your nfl team? ");
nflt = Console.ReadLine();
Console.Write("How many wins does the team have? ");
w = Convert.ToInt32(Console.ReadLine());
Console.Write("How many draws does the team have? ");
d = Convert.ToInt32(Console.ReadLine());
Console.Write("How many losses does the team have? ");
Console.WriteLine("===================================================");
Console.WriteLine("The team has " + w + " wins," + d + " draws, and " + l + " losses.");
Console.WriteLine("The total points the team has is " + t + ".");
Console.WriteLine("===================================================");