total = 0 for i in xrange(1, 1002): tmp = i * i total += tmp + (1 - i % 2) total += tmp + i + 1 print total - 1001 * 1002 - 1