n = gets.to_i ss = gets.chomp.split ts = gets.chomp.split n.times {|i_n| if ss[i_n] != ts[i_n] p i_n + 1 puts ss[i_n] puts ts[i_n] end }