write a program to input two numbers and their sum.(run time input)

3) write a program to input two numbers and their sum. a=int(input("enter the first number : ")) b=int(input("enter the second number : ")) c=a+b; print(c) output : Add-two-numbers-program-in-python