Practice a simple command line calculator. (linux)
Use the read command twice to prompt users to enter two integer numbers. Save them to two variables.
Display the sum, difference, and product of these two numbers. - Hint: use $[ ] to force numeric calculation; example: $[$num1+$num2]