#include<bits/stdc++.h>
using namespace std;
int x,sum;
void solve(){
string str;
cin>>str;
bool has0 = false;
for(char &ch:str){
x = ch-'0';
if(!x)has0=true;
sum +=x;
}
if(has0 && sum%3==0){
sort(str.begin(),str.end(),greater<int>());
cout<<str;
}else{
cout<<-1;
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
solve();
return 0;
}