시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB14011911288.189%

문제

In Chess, the knight is the weirdest of all the pieces. To begin with, the piece is actually a horse without any human riding it. The second reason is its movement pattern. It can move 2 cells forward and one to the side. Below you can see all the possible destinations of a knight.

With a movement pattern so weird, it is complicated to know what’s the shortest path between two board squares. Can you write a program that computes the minimum number of movements needed to move a knight from one square to another? Remember that a chessboard has 8 rows and 8 columns. Also in the standard notation, the columns are represented by letters from a to h.

입력

The input will contain 2 lines. The first line will be the starting position of the knight and the second line will specify its final position.

출력

Output a single integer specifying the minimum number of moves for the knight to get from it’s starting position to it’s final position on the board.

예제 입력 1

h1
a8

예제 출력 1

6

예제 입력 2

b1
b1

예제 출력 2

0

예제 입력 3

e2
e4

예제 출력 3

2