Don't know how to convert strings to integers.
I tried putting int around it and it still didn't work frstn = int(input("Type first number: "))
import math
# frstn means first number
# scndn means second number
op = input("What operator do you want? + - / *: ")
if op == "+":
frstn = input("Type first number: ")
scndn = input("Type second number: ")
print(frstn + scndn)
elif op == "-":
frstn = input("Type first number: ")
scndn = input("Type second number: ")
print(frstn - scndn)
elif op == "/":
frstn = input("Type first number: ")
scndn = input("Type second number: ")
print(frstn / scndn)
elif op == "*":
frstn = input("Type first number: ")
scndn = input("Type second number: ")
print(frstn * scndn)
else:
print("Invalid operator, reboot calculator.")