From cd41a2ef386622e957a451a08d0290ae504d4cd6 Mon Sep 17 00:00:00 2001 From: aiden0413 Date: Thu, 30 Oct 2025 17:36:18 +0900 Subject: [PATCH] =?UTF-8?q?[6=EC=A3=BC=EC=B0=A8]=201010=20=EB=AC=B8?= =?UTF-8?q?=EC=A0=9C=ED=92=80=EC=9D=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- seokjun/week6/1010.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 seokjun/week6/1010.py 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