x,y=map(int,input('Введи х и у через пробел > ').split());
if x > y:
c = y
y = x
x = c
print('x =', x, ' y =', y)