day1/exercise/bishop.py
author Santosh G. Vattam <vattam.santosh@gmail.com>
Tue, 30 Mar 2010 11:29:26 +0530
changeset 383 26294a5b856b
parent 64 333092b68926
permissions -rw-r--r--
Added new image files needed for compilation.

r, c = 5, 4
for i in range(1, 9):
    for j in range(1, 9):
        a = r - i
        b = c - j
        if a and b and a == b or a == -b:
            print i, j