d={'E':0,'S':1,'W':2,'N':3} A=input() B=input() if d[A]<=d[B]: print(d[B]-d[A]) else: print(4+d[B]-d[A])