a = gets.chomp.split('') b = gets.chomp.split(' ') a[b[0].to_i], a[b[1].to_i] = a[b[1].to_i], a[b[0].to_i] puts a.join