Adding Two Number In python

  1. num1 = input('Enter first number: ')  
  2. num2 = input('Enter second number: ')  
  3.   
  4. # Add two numbers  
  5. sum = float(num1) + float(num2)  
  6.   
  7. # Display the sum  
  8. print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))