#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int,int>;
const int N = 1e2+10;
int t,n,m,k,l,r,op,x,y;
int f[N],g[N];
void solve(){
for(int i = 1;i<=10;i++){
cin>>x;
if(x%2)f[++l]=x;
else g[++r]=x;
}
sort(f+1,f+1+l);
sort(g+1,g+1+r);
for(int i = l;i>=1;i--)cout<<f[i]<<" ";
for(int i = 1;i<=r;i++)cout<<g[i]<<" ";
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
solve();
return 0;
}