summaryrefslogtreecommitdiff
path: root/progs/a302.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a302.py')
-rw-r--r--progs/a302.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/progs/a302.py b/progs/a302.py
new file mode 100644
index 0000000..b8c8c7c
--- /dev/null
+++ b/progs/a302.py
@@ -0,0 +1,9 @@
+def count_Unset_Bits(n) :
+ cnt = 0;
+ for i in range(1,n + 1) :
+ temp = i;
+ while (temp) :
+ if (temp % 2 == 0) :
+ cnt += 1;
+ temp = temp // 2;
+ return cnt; \ No newline at end of file