# Author: Scott Wehrwein
# Date: 04/09/2025
# Solution to the P02 Extra Practice Problem:
# swapping the values of two variables

x = 10
y = 4

# your code here:
temp = x
x = y
y = temp
# end of solution

print(x, y)