Answers for "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"

4

how to add in python

a = int(input())
b = int(input())
s = a+b
print(S)
Posted by: Guest on April-23-2020

Code answers related to "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"

Python Answers by Framework

Browse Popular Code Answers by Language