s = input() Y = abs(s.count("N")-s.count("S")) X = abs(s.count("E")-s.count("W")) L = (X**2 + Y**2)**(0.5) print('{:.5f}'.format(L))