# WAP to calculate average of two numbers

num1 = int(input("Enter the first number: "))
num2 = int(input("Enter the second number: "))


average = (num1+num2)/2

print(f"\nAverage is: {average}")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: