""""""""""""""""""??????

Authorbob
Submission date2019-11-24 17:40:11.783063
Rating1760
Matches played214
Win rate16.82

Use rpsrunner.py to play unranked matches on your computer.

Source code:

if input == "": # initialize variables for the first round
	l= 0
        output=""
elif input == "R" and output=="S":
	l += 1
elif input == "P" and output=="R":
	l += 1
elif input == "S" and output=="R":
	l += 1
if l==2:
        output = "P" # paper beats rock
elif l==4:
	output = "S" # scissors beats paper
else:
	output = "R" # rock beats scissors
        l=0