#include #include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n;//진짜약수의 개수 cin >> n; int* arr = new int[n];//진짜약수를 입력받을 배열 for (int i = 0; i > arr[i]; } sort(arr, arr + n);//오름차순으로 정렬 cout