summaryrefslogtreecommitdiff
path: root/progs/a607.py
blob: 8015c1328c0750f997149b53e0859de11fc1d86c (plain)
1
2
3
4
import math  
def next_Perfect_Square(N): 
    nextN = math.floor(math.sqrt(N)) + 1
    return nextN * nextN