| Author | Shawn | 
| Submission date | 2011-06-10 20:40:32.658953 | 
| Rating | 2188 | 
| Matches played | 5492 | 
| Win rate | 17.99 | 
Use rpsrunner.py to play unranked matches on your computer.
import random;
if input == "": # initialize variables for the first round
	count = 0;
if count % 2 == 0:
	if input == "R":
		output = "S";
	elif input == "P":
		output = "R";
	elif input == "S":
		output = "P";
	else:
		output = random.choice(["R","P","S"]);
else:
	count += 1;
	output = random.choice(["R","P","S"]);