https://www.acmicpc.net/problem/2023#include #include #include using namespace std;static int N;void DFS(int number, int n);int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> N; DFS(2, 1); //소수와 해당 소수의 자릿수 DFS(3, 1); DFS(5, 1); DFS(7, 1);}bool isPrime(int number) { for (int i = 2; i