s={"靈夢":0,"紫":0}
while True:
try:
l=input()
if l=="Game Over":
if s["靈夢"]>s["紫"]:print("悲慘的籌措起香油錢")
else:print("螢火的蹤跡")
break
d=l.split()
if (d[0]=="Scissors" and d[1]=="Stone") or (d[0]=="Stone" and d[1]=="Paper") or (d[0]=="Paper" and d[1]=="Scissors"):
s["靈夢"]+=1;print("靈夢獲勝")
elif (d[0]=="Scissors" and d[1]=="Paper") or (d[0]=="Stone" and d[1]=="Scissors") or (d[0]=="Paper" and d[1]=="Stone"):
s["紫"]+=1;print("紫獲勝")
except EOFError:break