A Pythagorean triplet is a set of three natural numbers, a < b < c, for which
a^2 + b^2 = c^2.
For example, 3^2 + 4^2 = 9 + 16 = 25 = 5^2.
Given a target sum N = a + b + c, find the product a * b * c.
You may assume exactly one such triplet exists for the given N.