nbmysteres.py

Created by schraf

Created on July 11, 2021

139 Bytes


for n in range(10,316):
 c = str(n * n)
 while len(c) < 6 : c += c[-2]
 if int(c) == int(c[-2:]) * 10101:
   print(n * n)