#include #include #include using namespace std; void split_and_sort(vector& arr) { vector evens, odds; for (int num : arr) { if (num % 2 == 0) evens.push_back(num); else odds.push_back(num); } sort(evens.begin(), evens.end()); sort(odds.begin(), odds.end()); cout << "Even: "; for (int num : evens) cout << num << " "; cout << "\nOdd: "; for (int num : odds) cout << num << " "; } int main() { int n; cin >> n; vector arr(n); for (int i = 0; i < n; i++) cin >> arr[i]; split_and_sort(arr); return 0; }