Rating:

Extract the hexadecimal values from the compressed GZ, and save them as bytes.

It turns out to be a PNG file, content: solve the value of abc (Pythagorean triple) where:
* a < b < c, and
* a + b + c = 1000

```
sum = 1000
a = 1
while a <= sum/3:
b = a+1
while b <= sum/2:
c = sum-a-b
if a*a + b*b == c*c:
print(a*b*c)
b += 1
a += 1
```

Flag: 31875000