#include <iostream>
#include <string>

using namespace std;

string switchchars(string topermute, int x, int y)
{
	string newstring = topermute;
	newstring[x] = newstring[y];
	newstring[y] = topermute[x]; //avoids temp variable
	return newstring;
}
void permute(string topermute, int place)
{
	if(place == topermute.length() - 1)
	{
		cout<<topermute<<endl;
	}
	for(int nextchar = place; nextchar < topermute.length(); nextchar++)
	{
		permute(switchchars(topermute, place, nextchar), place+1);
	}
}

int main(int argc, char* argv[])
{
	if(argc!=2)
	{
		cout<<"Proper input is 'permute string'";
                return 1;
	}
        permute(argv[1], 0);
}
