Marquette University
High School Programming Contest 2013

Problem #2
Rock Paper Scissors

Regis Philbin and David Letterman have decided to settle the question of who is the greater TV host through a series of traditional rock paper scissors contests using R P S characters as input. Recall that Rock beats (smashes) Scissors, Scissors beat (cut) Paper, and Paper beats (wraps) Rock.

Each contest consists of a number of rounds. Each round is two letters (Letterman's choice on the left, Regis' choice on the right). The winner of the contest is the one who wins the most rounds. If they win the same number of rounds, report a Tie.

Each contest ends with the word "End". The end of file is marked by two consecutive "End" lines (i.e. an empty contest). For each contest, report the contest number and winner (or "Tie") as shown below.

Sample Input

RS
PS
RP
SS
SR
RR
PS
End
PP
RS
SR
RP
SP
End
End
Sample Output
Contest #1: Regis wins
Contest #2: Tie