You cannot multiply an integer by a string. To be sure, you could try using the int (short for integer which means whole number) command, like this for example -
firstNumber = int(9)
secondNumber = int(1)
answer = (firstNumber*secondNumber)
Hope that helped :)