import math def sqrtnum(): for i in range(0, 100): if math.sqrt(i + 100) % 1 == 0 and math.sqrt(i + 100 + 168) % 1 == 0: print(i) sqrtnum()
import math def sqrtnum(): for i in range(0, 100): if math.sqrt(i + 100) % 1 == 0 and math.sqrt(i + 100 + 168) % 1 == 0: print(i) sqrtnum()