Jorge is using Python 3 as a calculator. Jorge wants to find the product of 321 and 408. What should Jorge type?

(1 point)
Responses

print 321 x 408

print 321 x 408

print (321 times 408)

print (321 times 408)

print 321(408)

print 321(408)

print (321 * 408)

print (321 * 408)