import random,sys X=list(open(__file__).read()) Y=X[:] while any(x==y for x,y in zip(X,Y)):random.shuffle(Y) sys.stdout.write("".join(Y))