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]))
Log in or sign up for Devpost to join the conversation.