X,Y,Z = map(int,input().split()) if X > Y: X,Y = Y,X ans = X Y -= X if Y > Z: ans += Z Z = 0 else: ans += Y Z -= Y print(ans + (Z // 2))