a = 1
n = 1
while a > 0:
while n != 0:
n += 1
if n % 2 == 0:
n = n/2
else:
n = n + 1
if n == 0:
print(yes)
else:
print(no)
a -= 1
while a > 0:
IndentationError: unexpected indent