in_sta_loc = input() in_end_loc = input() loc_dict = {"N":0, "E":1, "S":2, "W":3} sta_loc = loc_dict[in_sta_loc] end_loc = loc_dict[in_end_loc] if sta_loc > end_loc: end_loc += 4 move_num = end_loc - sta_loc print(move_num)