score1 = int(input("Enter your first score: ")) score2 = int(input("Enter your second score: ")) score3 = int(input("Enter your third score: "))

l = [score1, score2, score3] l.sort()

print("The play who wins is the one with the highest score of: " + str(l[2]))

Built With

Share this project:

Updates