Ramesh and Suresh are playing the game of odd-even. In this game, both players first choose "ODD" or "EVEN" based on their lucky instincts, then choose an integer of their choice at the same time and if sum of both the numbers is even then one who choses even wins else if number is not even then the one who choses "ODD" wins . Now both Ramesh and Suresh decides to take this game to next level by playing game N number of times and whoever wins the most number of games will be titled with THE ULTIMATE CHAMPION. Now both wants to win the game desperately. It is known that Ramesh's lucky instinct tells him to go with "EVEN" always thus he always choses "EVEN". You are the judge, tell the final verdict by calling out the name of the winner.
INPUT FORMAT :
First line of input will contain an integer N.
Following N lines will contain two integers R and S denoting number chosen by Ramesh and Suresh Respectively.
OUTPUT FORMAT :
Your output should contain one line, containing the string denoting the name of the winner, i.e., "RAMESH" or "SURESH". (in capitals and without "" ).
CONSTRAINTS :
1≤ N ≤104
0≤ A , B ≤1010
NOTE : It is confirm that either RAMESH or SURESH wins for sure.
Since ramesh always choses "EVEN" in first game (12+21=33) Suresh wins.In second game (12+12=24) Ramesh wins. In third game, (1+1=2) Ramesh wins.Hence Ramesh wins with 2 wins.