X, Y = input().split() Z_1 = (int(X+Y))/2 #9 Z_2 = (int(X+Y))/2 - 6 #3 if X-Z_1 < X-Z_2: Z = Z_2 print(Z) else: Z = Z_1 print(Z)