In: Computer Science
Fill in the missing information from the statements below so that the entire code block fulfills the program requirements from the last step and prints the desired output. You only need to supply the parts of each statement that are not shown below.
Fill in the Blanks — Fill in the blanks
number1 = int(_________ ("Enter the first number: "))
number2 = __________ (input("Enter the second number: "))
the_sum = _________
print( )_____________
ANSWER:-
number1 = int(input("Enter the first number:
"))
number2 = int(input("Enter the second number:
"))
the_sum = number1+number2
print(the_sum)
// OUTPUT