This program’s goal is to display the product of two numbers. What type of error occurs, if any, in this program?
numa = 12 numb = 31 product = numa numb print(product)
a. runtime error
b. syntax error
c. no error
d. logic error