What are the values of x and y after executing the code snip…
What are the values of x and y after executing the code snippet below — what will be printed when the main gets run? def swap(a: int, b: int) -> None: temp = a a = b b = temp def main() -> None: x = 10 y = 11 swap(x, y) print(x , y) # recall that ‘,’ in a print statement inserts a space separator main()