#include using namespace std; #include #include #include #include #include #include template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } #define rep(i,n) for (int i = 0; i < (n); ++i) typedef long long ll; typedef unsigned long long ull; using P=pair; const int INF=1001001001; const ll INFL=1e18; const int mod=1e9+7; void solve(){ char a,b; cin>>a>>b; auto f=[&](char c){ int x; if(c=='N'){x=0;} if(c=='E'){x=1;} if(c=='S'){x=2;} if(c=='W'){x=3;} return x; }; int x=f(a),y=f(b); int t=y-x; if(t<0){t+=4;} cout<