day1/exercise/bishop.py
author Madhusudan.C.S <madhusudancs@gmail.com>
Wed, 14 Oct 2009 12:43:21 +0530
changeset 112 24992ab48f2b
parent 64 333092b68926
permissions -rw-r--r--
Created the pristine form of the repository for Goa workshop.

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