#include using namespace std; typedef long long ll; int main() { int N; cin >> N; while(N){ if(N % 10 == 3){ if(N % 100 == 1){ cout << 1 << endl; return 0; } N /= 10; } } cout << -1 << endl; return 0; }