python import ptvsd ptvsd.enable_attach() ptvsd.wait_for_attach() ptvsd.break_into_debugger() x = 5 y = 10 z = x + y print(z)