|
# Simple calculator application
|
|
This application asks the user to enter an operator and to two operands. Example:
|
|
```
|
|
> Enter operator: +
|
|
> Enter operand 1: 67
|
|
> Enter operand 2: 8
|
|
```
|
|
It then preceeds to print the result of the calculation:
|
|
```
|
|
The Result is: 75
|
|
``` |