A)  
num1=input("Enter the first number")
 
num2=input("Enter the second number")
 
num3=num1+num2
 
print(num3)
A)  
B)  
num1=input("Enter the first number")
 
num3=input("Enter the secon number")
 
num3=num1+num2
 
print(num3)
B)  
C)  
num1=input("Enter the first number")
 
num2=input("Enter the second number")
 
num3=num1+num2
 
print(num2)
C)  
D)  
Num1=input("Enter the first number")
 
Num2=input("Enter the second number")
 
num3=num1+num2
 
print(Num3)
D)  

Correct Answer :