Skip to content
Home
Blog
Algorithm
Projects
Toggle dark mode
Baekjoon 3049
Baekjoon
Python
2023년 1월 23일
1. Problem
문제 확인하기
2. Solution
n
=
int
(
input
(
)
)
print
(
n
*
(
n
-
1
)
*
(
n
-
2
)
*
(
n
-
3
)
//
24
)