def solution(n):
return ((n**0.5)+1)**2 if int(n**0.5)**2 == n else -1
function solution(n) {
if(Math.pow(parseInt(Math.sqrt(n)),2) == n )
return Math.pow(Math.sqrt(n)+1, 2);
else return -1;
}
function solution(n) {
if(String(Math.sqrt(n)).indexOf(".") !== -1) return -1
else return Math.pow(Math.sqrt(n)+1, 2)
}