Question 1 1 pts Which of the following correctly prints the following calculation if x is 17 and y is 5? Sun is: 22 print("Sum is:* + int x + y)) O print ("Sum is: " + x + y) print("Sum is: " + str(x + y)) o print ("Sum is: " + (x + y))​

Respuesta :

Answer:

This is a Python program, and the code is below.

Explanation:

x = 17

y = 5

print("Sum is: " + str(x + y))