Чому програма не виводить результат?
N=int(input())
s=int(input())
for i in range(1,N+1):
if int(i**0.5)==i**0.5:
s+=i
print(s)