Help me in solving LB01D problem

Blockquote

My issue

I devides it by 2 what is the problem

My code

# How to find the average of 2 numbers?

A = 15
C = 19
B = (A + C)/2
print(B)

A = 16
C = 18
B = (A + C)/2
print(B)

Learning course: Solve Programming problems using Python
Problem Link: Problem (Make Avg) - Solve sub-components Practice Problem in Solve Programming problems using Python - CodeChef

@vishaalthegr8
put // sign instead of /

thanks a lot I ur help was great to me