Write a Python program to enter two numbers and find their sum.

Sol :- 

#Static

 a=5

b=10

add = a+b

print(“The Sum of 2 number is :- “,add)

 

# Dynamic

 no1 = int(input(“Enter the First number :-“))

no2 = int(input(“Enter the Second number :-“))

add = no1 + no2

print(“The Sum of two number is :-“,add)