public static void Main()
Console.Write("What is your first score? >>>");
int score1 = int.Parse(console.ReadLine());
Console.Write("What is your second score? >>>");
int score2 = int.Parse(console.ReadLine());
Console.WriteLine("You pass the test with {0}", (score1+score2));
Console.WriteLine("Sorry, we will see each other again");