#include using namespace std; const int dx[]={0,1,-1,0}; const int dy[]={-1,0,0,1}; int conv(char c){ switch(c){ case 'N': return 0; case 'E': return 1; case 'W': return 2; case 'S': return 3; } } int main(){ int y=0,x=0; string str; cin>>str; for(int i=0;i