x,y,z=map(int,input().split()) a=min(x,y) ans=a x-=a y-=a if max(x,y)>=z: ans+=max(x,y) else: ans+=max(x,y) z-=max(x,y) ans+=z//2 print(ans)