import math
num_1 = float(input())
num_2 = float(input())
num_3 = float(input())

result = math.floor((num_1 + num_2 + num_3)/3)
print(result)