#include <iostream>
#include <algorithm>
#include <string>
#include <random>
int main(){
	std::string A = "the star light are fall!";
	std::string B = A;

	std::random_device RD;
	std::mt19937 mtr(RD());

	while (A == B){
		std::shuffle(A.begin(), A.end(), mtr);
	}
	std::cout << B << " <to> "<< A << std::endl;

	return 0;
}