import math s = input() x = (s.count('E'))-(s.count('W')) y = (s.count('N'))-(s.count('S')) ans = math.sqrt(x**2+y**2) print(ans)