day1/exercise/bishop.py
author Puneeth Chaganti <punchagan@fossee.in>
Fri, 10 Dec 2010 00:16:11 +0530
branchscipyin2010
changeset 452 f9417abb23a6
parent 64 333092b68926
permissions -rw-r--r--
Moved exercises and other minor changes in day2/session3.

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