A, B, C = list(map(int, input().split())) X = A*B*C Y = A*B*2 + B*C*2 + C*A*2 print(2 if X < Y else 3)