a=gets.chomp.chars.to_a.map(&:to_i) c=a.max i=a.index{|e|e!=c} if i a[a.rindex(c)]=a[i] a[i]=c end puts a*""