I'm unable to make a program that asks the user to input three arguments on the command line: 1) an operator (+, -, *, /); 2) an integer (n); 3) another integer (m). The program should thus act as a basic calculator producing the output in this format: .
e.g.
operator='+'
n=5
m=6
output: 5+6
= 11