A, B = map(int, raw_input().split())
if A+B > A*B:
	print "S"
elif A+B == A*B:
	print "E"
else:
	print "P"