Files
CodeObject/zeta/py/completed/11966.py
2025-05-07 04:44:30 +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)