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

x = 7
y = 4

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

print(x, y)