My Sum Calculator in Python(PyCharm)

 Sum Calculator In Python

print("enter 1st number")
a = input()
print("enter 2nd number")
b = input()
print("the sum is",int(a)+int(b))

Comments

Popular posts from this blog

Sets in Python

My Learnings