Arithmetic operations

Python enables performing all the standard arithmetic operations. Let's launch the Python interpreter and learn more:

       >>>123+456 
579
       >>>456-123 
333
>>>123-456
-333
       >>>123*456 
56088
       >>>456/22 
20.727272727272727
>>>456/2.0
228.0
>>>int(456/228)
2
       >>>4%2 
0
>>>3%2
1
       >>>9//7 
1
>>>7//3
2
>>>79//25
3