n = gets.chomp ans = n.to_i Array(0...n.size).combination(2) do |i, j| d = n.dup d[i], d[j] = d[j], d[i] ans = [d.to_i, ans].max end puts ans