| Лимит времени 2000/4000/4000/4000 мс. Лимит памяти 65000/65000/65000/65000 Кб. Question by Ibrahim Mesecan.
 
 
   Rock Paper Scissors Lizard SpockYou know the famous game: Rock Paper Scissors. 
There is an extension of it: Rock Paper Scissors Lizard Spock.
In which the rules are similar. Any of the five can win 
or lose against other four as seen in image on the right.
 Question:
Write a program that is going read n games between
two people, and show the winner. Note:  If the two players show the 
same hand, they both take 0.
 Input specification  You will be given an integer (n) the number of plays where 
0 ≤ n ≤ 1000. Then, in the following n lines, you will 
be given two strings.
 Output specification: Show the score in the first line. Then, show one of the messages:
 
1: if the first player wins2: if the second player winsTie: if they have the same score 
  | Sample Input I 
 
3 Rock Paper
 Lizard Rock
 Spock Scissors
 
 | Sample Output I 
 
1 2 2
 |  Explanation: 
 
Paper covers RockRock crushes LizardSpock smashes Scissors 
 Для отправки решений необходимо выполнить вход.
 
 
 |