| Author | Waffle | 
| Submission date | 2016-06-18 20:45:21.266943 | 
| Rating | 4651 | 
| Matches played | 391 | 
| Win rate | 48.59 | 
Use rpsrunner.py to play unranked matches on your computer.
import random
last = random.choice(["R","P","S"])
if input == "R":
	if last != "P":
		last = random.choice(["R","S"])
elif input == "P":
	if last != "S":
		last = random.choice(["R","P"])
	output = last
elif input == "S":
	if last != "R":
		last = random.choice(["P","S"])
output = last