Addition Of Two Number In Python

1- print{Enter To Number To Be Added} Using Python

2- Now here we take the variable
3-Now we will take a variable in which we will add them both
4- Now we will print the sum we have done
Program Is Complete

TRY IT YOUR SELF

#Made By Garvit Technologies


#Print {Enter To Number To Be Added} Using Python


print("Enter Two Number To Be Added")

# Now here we take the variable


x = input("Type a number: ")

y = input("Type another number: ")


#Now we will take a variable in which we will add them both


sum int(x) + int(y)


#Now we will print the sum we have done


print("The sum is: "sum)