Write a complete program in Python that does the following:…

Write a complete program in Python that does the following:        –      asks a user to enter  two integer numbers;        –      reads the name and two numbers from the keyboard;        –      calculates the product, the sum and the result of float division of the first number by the second one if first number is greater than second else divides second number by first;           

If you enter 5 4 6 in three separate lines, when you run thi…

If you enter 5 4 6 in three separate lines, when you run this program, what will be displayed?  print(“Enter three numbers: “) number1 = int(input()) number2 = int(input()) number3 = int(input())  # Compute average average = (number1 + number2 + number3) / 3  # Display result print(average)