n=int(input())
s=input()
l=['N','E','S','W']
idx=0
for i in s:
    if i=='L':
        idx-=1
    else:
        idx+=1
i=idx%4
print(l[i])