PYTHON
Read two numbers from user input.
Then, print those numbers' sum.
Complete the following code:
num1 = int(input())
num2 = ?
print (num1 + ? )
PYTHON
Read couple bulk from user input.
Then, print those bulk’ solidity.
Complete the forthcoming enactment:
num1 = int(input())
num2 = ?
print (num1 + ? )
Answer)
print(“Enter couple bulk: “)
num1 = int(input())
num2 = int(input())
print(“Solidity of the bulk = “,num1+num2)
Screenshots of enactment and Outputs :