using System; using System.Collections.Generic; using System.Linq; class Program { static void Main() { // 要素を作成 var news = new Dictionary() { {"N", 0 }, {"E", 1 }, {"S", 2 }, {"W", 3 }, }; // 標準入力取得 var pStart = Console.ReadLine(); var pEnd = Console.ReadLine(); if (pStart == pEnd) { Console.WriteLine("0"); } else { // 工程を算出 var ans = (news[pEnd] - news[pStart] + 4) % 4; Console.WriteLine(ans); } } }