human = input("Your choice? ")
comp = random.randint(1,3)
print("Computer choice: " + computer)
if human== "paper" and computer == "scissors":
elif human== "paper" and computer == "stone":
elif human== "paper" and computer == "paper":
elif human== "scissors" and computer == "paper":
elif human== "scissors" and computer == "stone":
elif human== "scissors" and computer == "scissors":
elif human== "stone" and computer == "scissors":
elif human== "stone" and computer == "paper":
elif human== "stone" and computer == "stone":