doan logic 1

Anonymous
plain_text
10/23/2022 1:59 AM
216 B
16
Indexable
def f(x):
    if x == 1:
        return 2
    return f(x - 1) * 2 - 1


t = int(input())
while t > 0:
    t -= 1
    x = int(input())
    print(f(x))
Editor is loading...