summaryrefslogtreecommitdiff
path: root/progs/a710.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a710.py')
-rw-r--r--progs/a710.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a710.py b/progs/a710.py
new file mode 100644
index 0000000..53ba065
--- /dev/null
+++ b/progs/a710.py
@@ -0,0 +1,6 @@
+def count_Squares(m,n):
+ if (n < m):
+ temp = m
+ m = n
+ n = temp
+ return n * (n + 1) * (3 * m - n + 1) // 6 \ No newline at end of file