This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x = int | |
y = int | |
math = input("What do you want to do with the calculator: ") | |
if math.lower() == "add": | |
num1 = input("Please enter the first number: ") | |
num2 = input("Please enter the second number: ") | |
print(int(num1) + int(num2)) | |
if math.lower() == "sub": |