Arithmetic Operations
Posted on Thu 19 November 2015 in Python
Basic Arithmetic Operations
In python, performing the arithmetic operations are quit easier.
For example,
a = 50
b = 20
print a + b
print a - b
print a * b
print a / b
Getting an input
For getting an input from the users,
```
Continue reading