In [2]:
a = 8
b = 15
In [3]:
c = a + b
c
Out[3]:
In [6]:
d = a * b
In [7]:
print "INPUTS (a,b):", (a,b)
print "C (a+b):", c
print "D (a*b):", d