x = 5
y = 10
# Now x = 5 and y = 10

print(' x : {}'.format(x)) # x : 5
print(' y : {}'.format(y)) # y : 10