Answers for "how to add in python "and""

4

how to add in python

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

adding in python

#to add 2 digits
print("enter 2 numbers")
a =int(input("enter 1 st number"))
b =int(input("enter 2nd number"))
c = a+b
print ("here is your answer",c)
Posted by: Guest on February-21-2022

Python Answers by Framework

Browse Popular Code Answers by Language