Use the code to complete the statement.

def math(numA, numB): # Line 1
return numA ** numB # Line 2
print(math(2, 3)) # Line 3
The first line of code executed in this Python program is line

A. Line 1
B. Line 2
C. Line 3