Lesson 2: Variables 1.0
Post date: Oct 12, 2017 3:43:07 PM
a = input("Give me a number:")
print("a is", a)
b = input("Give me an other:")
print("b is", b)
c = int(a) + int(b)
print("The sum is ", c)
Post date: Oct 12, 2017 3:43:07 PM
a = input("Give me a number:")
print("a is", a)
b = input("Give me an other:")
print("b is", b)
c = int(a) + int(b)
print("The sum is ", c)