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