Altough Num1 is defined it is displaying an error saying it is not :( i have tried this with and without int() but still produces the same error. Just for context this is a calculator.
def main():
Num1 = int(input("Please type First Number:"))
calc = input("x,+,-,/")
Num2 = int(input("Please type Second Number:"))
if(calc == "x"):
multiply()
def multiply():
Num1 * Num2