12 lines
166 B
Python
12 lines
166 B
Python
start = 2065
|
|
stop = 2091
|
|
|
|
T = ["0","1"]
|
|
|
|
for n in range(1, stop//2+2):
|
|
T.append(T[n])
|
|
T.append(str(1-int(T[n])))
|
|
|
|
b=int("".join(T[start:stop+1]), 2)
|
|
|
|
print(b) |