I have two integers in my program; let\'s call them \"a\" and \"b\". I would like to add them together and get another integer as a result. These are
a
b
How about this:
c = a + b
That should work, and it doesn't need to be done asynchronously (it's pretty fast).