a,b,c=map(int,input().split())
tong=0
if a%2==0:tong+=a/2
else:tong+=int(a/2)+1
if b%2==0:tong+=b/2
else:tong+=int(b/2)+1
if c%2==0:tong+=c/2
else:tong+=int(c/2)+1
print(int(tong))
Phản hồi này đã được điều chỉnh 1 days, 19 hours trước bởi Vi Tính Tấn Dân.