a program that can either add or subtract two numbers. You should first ask the user whether they want to add or subtract, then take in the two numbers with python code example
Example: how to add in python
a = int(input())
b = int(input())
s = a+b
print(S)