Run ID:85563
提交时间:2024-07-18 13:49:37
res = a = 1 n = int(input()) for _ in range(n-1): a = a*2 res = res + a print(res)