| Author | undermite | 
| Submission date | 2019-11-25 12:35:24.405290 | 
| Rating | 4646 | 
| Matches played | 205 | 
| Win rate | 48.78 | 
Use rpsrunner.py to play unranked matches on your computer.
import random
n=random.choice(["R","P","S"])
if n=="R":
  output="P"
elif n=="P":
  output="S"
else:
  output="R"