#include<fstream> using namespace std; ifstream fin("date.in"); ofstream fout("date.out"); int n,t[100],s[100]; void citire() { fin>>n; for(int i=1;i<=n;i++) fin>>t[i]; for(int i=1;i<=n;i++) fin>>s[i]; } int main() { citire(); int ok=1,gasit; for(int i=1;i<=n;i++) if(t[i]) { gasit=0; for(int j=1;j<=n;j++) if(i==j && t[i]==s[j] || i==s[j] && t[i]==j) gasit=1; if(!gasit) ok=0; } if(ok) fout<<"da"; else fout<<"nu"; return 0; }