Lab 2

I typed numbers and input symbols. After inputting these components the output shall be the the answer of the equation.

Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win32
Type “copyright”, “credits” or “license()” for more information.
>>> 9+7
16
>>> 9-7
2
>>> 9/7
1
>>> 9%7
2
>>>