Write a program that will input a list of test scores from the keyboard. When the user enters -1, print the largest score.
Hint: Helps to use an if statement inside of a while statement
Sample Run:
Enter the Scores:
44
22
88
-1
The largest score is 88