summaryrefslogtreecommitdiff
path: root/progs/a607.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a607.py')
-rw-r--r--progs/a607.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/progs/a607.py b/progs/a607.py
new file mode 100644
index 0000000..8015c13
--- /dev/null
+++ b/progs/a607.py
@@ -0,0 +1,4 @@
+import math
+def next_Perfect_Square(N):
+ nextN = math.floor(math.sqrt(N)) + 1
+ return nextN * nextN \ No newline at end of file