3 answers
(click or scroll down)
The output of the program is `79`.
In Python, when you use the `+` operator with strings, it performs string concatenation. So when you have `x = "7"` and `y = "9"`, `print(x + y)` results in the two strings being combined to form `"79"`.
Thus, the correct response is **79**.