	#include <iostream>
	
	int main() {
		int x{5}, y{3}, z{2};
		
		int temp{std::move(x)};
		x = y;
		y = z;
		z = temp;
		
		std::cout << x << ' ' << y << ' ' << z << '\n';
		
		return 0;
		
	}