Thursday, July 5, 2018

SYNC13C - WHAT A CO-ACCIDENT : Classical

#The solution in Python 3 is as follows:


for _ in range(int(input())):
c1,c2=map(int,input().split())
if c1%2 and c2%2:
print('Ramesh')
else:
print('Suresh')


#Keep visiting for more solutions of SPOJ problems in Python 3.Thank you!!!