// I SELL YOU...! #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; using P = pair; using TP = tuple; void init_io(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(18); } signed main(){ init_io(); ll a,b,c; cin >> a >> b >> c; ll x = 2*(a*b + b*c + c*a), y = a*b*c; if (x > y) { cout << "2" << endl; } else { cout << "3" << endl; } }