t = int(input())
for i in range(t):
floor = int(input())
n = int(input())
people = [i for i in range(1, n+1)]
for j in range(floor):
for k in range(1, n):
people[k] = people[k] + people[k-1]
print(people[n-1])
'Python > 백준' 카테고리의 다른 글
백준 2902 - KMP는 왜 KMP일까? (0) | 2022.11.28 |
---|---|
백준 - 1312 소수 (0) | 2022.11.02 |
백준 - 10951 a+b -4 (0) | 2022.10.25 |
백준 - 10807 개수 세기 (0) | 2022.10.24 |
백준 - 5532 방학숙제 (0) | 2022.10.23 |