#include #include #include #include #include #include using namespace std; typedef long long int ll; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int x=0,y=0; string s; cin >> s; for(char c:s){ if(c=='N')x++; if(c=='S')x--; if(c=='W')y++; if(c=='E')y--; } cout << sqrt(x*x+y*y) << endl; }