#include using namespace std; int main(){ cin.tie(0),ios::sync_with_stdio(false); string s; cin>>s; sort(s.begin(),s.end(),greater()); string ans=s; swap(*(ans.rbegin()+1),ans.back()); bool all=all_of(ans.begin(),ans.end(),[=](auto a){return a==ans.front();}); cout<<(ans.front()=='0'||all?"-1"s:ans)<<"\n"s; }