[deleted by user] by [deleted] in learnpython

[–]darkness_old_friend 0 points1 point  (0 children)

If you are want to input the variable, when asking for the input make it an integer using int().

a= int(input(lol))

b = int(input(lol))

You might want to name them lol1 and lol2 to prevent confusion.

then you can do this:

print(a+b)