Answer:
The full program is:
num1 = int(input())
num2 = int(input())
print(num1 + num2)
Step-by-step explanation:
Given
num1 = int(input())
num2 = ?
print(num1 + ?)
Required
Replace ? with the right codes
Line 1: The syntax is correct
Line 2: The ? should be replaced with an integer input function to get input for num2.
So, the second line would be: num2 = int(input())
Line 3: The ? should be replaced with num2 in order to calculate and print the required sum.
So, the third line would be: print(num1 + num2)