#include using namespace std; int main(){ string x, s; char tmp[10]; cin >> x; sort(x.begin(), x.end()); reverse(x.begin(), x.end()); s=x; tmp[0]=x[x.size()-1]; x[x.size()-1]=x[x.size()-2]; x[x.size()-2]=tmp[0]; if(s==x || x[0]=='0') cout << -1 <