The average of the numbers you entered

PHOTO EMBED

Sat May 01 2021 16:22:03 GMT+0000 (Coordinated Universal Time)

Saved by @ihasan #python

num1 = eval(input('Enter the first number: '))
num2 = eval(input('Enter the second number: '))
print('The average of the numbers you entered is', (num1+num2)/2)
content_copyCOPY