Answers for "add number in python"

7

sum of 2 numbers in python

a = int(input("Enter first number:"))
b = int(input("Enter second number:"))
sum = a+b
print(sum)
Posted by: Guest on March-06-2020
4

how to add in python

a = int(input())
b = int(input())
s = a+b
print(S)
Posted by: Guest on April-23-2020

Python Answers by Framework

Browse Popular Code Answers by Language