function p9()
for a ∈ 1:999
for b ∈ 1:999
c = 1000 - a - b
c >= 1 || continue
a^2 + b^2 == c^2 || continue
return a, b, c
end
end
end;
p9()(200, 375, 425)