#include using namespace std; typedef long long ll; typedef pair P; #define REP(i,n) for(int i=0;i> A >> B >> C; int X=2*(A*B+B*C+C*A); int Y=A*B*C; cout << (X>Y ? 2 : 3) << endl; return 0; }