Answer:
The full program is:
<em>num1 = int(input()) </em>
<em>num2 = int(input()) </em>
<em>print(num1 + num2)</em>
<em />
Explanation:
Given
<em>num1 = int(input()) </em>
<em>num2 = ?</em>
<em>print(num1 + ?)</em>
<em />
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: <em>num2 = int(input()) </em>
Line 3: The ? should be replaced with num2 in order to calculate and print the required sum.
So, the third line would be: <em>print(num1 + num2)</em>
<em />