Source code-
# A simple program made by Linux & Windows Tech
a = input("Enter the first number:")
b = input("Enter the second number:")
a = float(a)
b = float(b)
avg = (a+b)/2
print("The average of those two numbers are:", avg)
print("Thank you for using a simple program made by Linux & Windows Tech.")