In Python, an integer (int) is one of 3 distinct numeric types.
In this exercise, you will subtract two integers using the minus (-) operator.
- https://docs.python.org/3.6/library/operator.html#operator.sub
- https://docs.python.org/3/library/operator.html#mapping-operators-to-functions
>>> 4 - 2
2
Instructions:
Change the 0 so that total will equal 10.