# /usr/bin/python
# Example 7.94

print [i*i for i in range(1, 100) if i % 2 == 1]
