diff --git a/seokjun/week6/1010.py b/seokjun/week6/1010.py new file mode 100644 index 0000000..4228bfb --- /dev/null +++ b/seokjun/week6/1010.py @@ -0,0 +1,6 @@ +from math import* + +t=int(input()) +for _ in range(t): + n,m=map(int,input().split()) + print(comb(m,n)) \ No newline at end of file