Write the program in python to calculate the average of three inputted number
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
print(“Welcome”)a = int(input(“1st number > “))b = int(input(“2nd number > “))c = int(input(“3rd number > “))result = a + b + cfinal_result = result / 3print(final_result)