a=int(input("Enter score player 1")) b=int(input("Enter score player 2")) c=int(input("Enter score player 3")) if a>b and a>b: print("a wins") elif b>a and b>c: print("b wins") else: print("c wins")
solo
a=int(input("Enter score player 1")) b=int(input("Enter score player 2")) c=int(input("Enter score player 3")) if a>b and a>b: print("a wins") elif b>a and b>c: print("b wins") else: print("c wins")
Leave feedback in the comments!
Log in or sign up for Devpost to join the conversation.