문제들이 잘 풀리지 않아 준비 운동으로 쉬운 문제를 한번 풀어보았다. 이 문제는 단순하게 조합의 공식을 대입하여 해결하였다.
(n-i)
(m-i)
top//bottom
n, m=map(int, input().split()) top=1 bottom=1 for i in range(m): top*=(n-i) bottom*=(m-i) print(top//bottom)