Okay, so I'm trying to make a program here that performs completely unhelpful variants of normal math functions, for example:
2 + 3 = 23
2 - 3 = 32
2 * 3 = 222
The trick is that I have to figure out which function is being called for without specifically asking the user whether they want to do stupid addition, stupid subtraction, or whatever.
How do I detect which math operator is inputted into the program?