a, b, c = map(int, input().split()) x = 2 * (a * b + a * c + b * c) y = a * b * c if x > y: print(2) else: print(3)