Files
CodeObject/zeta_python/completed/11966.py
2019-11-15 03:29:24 +09:00

6 lines
82 B
Python

d=1;n=int(input())
while n>=d:
if(n==d):print(1);break
d*=2
else:print(0)