diff --git "a/Algorithm/\354\235\264\352\262\203\354\235\264 \354\267\250\354\227\205\354\235\204 \354\234\204\355\225\234 \354\275\224\353\224\251 \355\205\214\354\212\244\355\212\270\353\213\244/Chapter 4/4-3.py" "b/Algorithm/\354\235\264\352\262\203\354\235\264 \354\267\250\354\227\205\354\235\204 \354\234\204\355\225\234 \354\275\224\353\224\251 \355\205\214\354\212\244\355\212\270\353\213\244/Chapter 4/4-3.py" new file mode 100644 index 0000000..08decde --- /dev/null +++ "b/Algorithm/\354\235\264\352\262\203\354\235\264 \354\267\250\354\227\205\354\235\204 \354\234\204\355\225\234 \354\275\224\353\224\251 \355\205\214\354\212\244\355\212\270\353\213\244/Chapter 4/4-3.py" @@ -0,0 +1,13 @@ +n = input() +x, y = ord(n[0])-ord('a') + 1, int(n[1]) +print(x, y) +count = 0 + +locations = [[2, 1], [2, -1], [-2, 1], [-2, -1], [1, 2], [1, -2], [-1, 2], [-1, -2]] + +for location in locations: + print(x + location[0], y + location[1]) + if 1 <= x + location[0] <= 8 and 1 <= y + location[1] <= 8: + count += 1 + +print(count) \ No newline at end of file