Program Flow 2
Study the code below 001 print(“Welcome to the Adding Machine”) 002 print(“*****************************”) 003 number1 = int(input(“Enter your first number: “)) 004 number2 = int(input(“Enter your second number: “)) 005 sum = number1 + number2 006 print(“The sum of your inputs is”, sum) State which programming construct this algorithm uses. Explain your answer.