a, b, c = list(map(int, input().split())) sur = a*b + b*c + c*a vol = a*b*c ans = 0 if sur > vol: ans = 2 else: ans = 3 print(ans)