which of these lines will not result in a syntax error?

print(10 "is the result.")

print(10, is the result.")

print(10, "is the result.)

print(10, "is the result.")

The correct line that will not result in a syntax error is:

print(10, "is the result.")