arithmetic.py
a = int(input("What is the first integer: "))
b = int(input("What is the second integer: "))
print('a + b = %d' % (a + b))
print('b - a = %d' % (b - a))
print('a * b = %d' % (a * b))
arithmetic.py
a = int(input("What is the first integer: "))
b = int(input("What is the second integer: "))
print('a + b = %d' % (a + b))
print('b - a = %d' % (b - a))
print('a * b = %d' % (a * b))