find sum of 2 numbers in array using python

Solutions on MaxInterview for find sum of 2 numbers in array using python by the best coders in the world

showing results for - "find sum of 2 numbers in array using python"
Jody
19 Mar 2017
1a = int(input("Enter first number:"))
2b = int(input("Enter second number:"))
3sum = a+b
4print(sum)