s='' t='0123456789' for i in map(int,raw_input()):s+=t[i];t=t[i]+t[:i]+t[i+1:] print s