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