0
Average of Two Numbers
I am building a calculator that find the average of two numbers, and I don't know how to go about it
1 Antwoord
0
dayeabasi kingsley
# Only 2 numbers is:
num1 = int(input())
num2 = int(input())
print((num1 + num2)/2)
I am building a calculator that find the average of two numbers, and I don't know how to go about it