#include using namespace std; #define REP(i, n) for(int i = 0; i < n; i++) int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; vector s(n),t(n); REP(i,n) cin>>s[i]; REP(i,n) cin>>t[i]; REP(i, n) { if (s[i] != t[i]) { cout << i + 1 << endl << s[i] << endl << t[i] << endl; return 0; } } }