day1/exercise/bishop.py
author Shantanu <shantanu@fossee.in>
Wed, 23 Dec 2009 14:17:02 +0530
changeset 331 c1bfec797af6
parent 64 333092b68926
permissions -rw-r--r--
Added images of ode results in session 5.

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