I can input 2 strings, a or b they could be either rock,scissors, lizard,paper or spock.
their relationship is:
rock> scissors or rock> lizards
paper> rock or paper > spock
scissors>paper or scssors>lizard
lizard>spock or lizard> paper
spock>scissors or spock>rock
a=input("input move")
b=input("input another move")
if a==b:
print(0)
elif a>b:
print(1)
else:
print(2)
how to write this program?
Thanks