# Ces programmes sont sous licence CeCILL-B V1.

s = 2
p = False
while not p:
  for i in range(1,s):
    j = s - i
    if i * i == 25 * j * j:
      p = True
  s = s + 1
