T = int(input())

p_list = [0] * 101
p_list[0] = 1; p_list[1] = 1; p_list[2] = 1
p_list[3] = 2; p_list[4] = 2

for _ in range(T):
    N = int(input())

    pos = 0
    for i in range(5, N):
        p_list[i] = p_list[pos] + p_list[i - 1]
        pos += 1
    print(p_list[N - 1])

'# 코딩 문제 관련 > 파이썬' 카테고리의 다른 글

백준 1932번(python)  (0) 2019.08.05
백준 1149번(python)  (0) 2019.08.05
백준 1904번(python)  (2) 2019.08.01
백준 1003번(python)  (0) 2019.07.31
백준 2748번(python)  (0) 2019.07.31