#include <iostream>
using namespace std;
int main()
{
int n, a[1001], b[1001];
//Citim cei 2 vectori
cin >> n;
for (int i = 1; i <= n; ++i)
{
cin >> a[i];
}
for (int i = 1; i <= n; ++i)
{
cin >> b[i];
}
//Verificam daca avem aceleasi valori
bool ok;
for (int i = 1; i <= n; ++i)
{
ok = false;
for (int j = 1; j <= n; ++j)
{
if (a[i] == b[j])
{
ok = true;
}
}
if (!ok)
{
cout << "Valorile nu sunt egale";
break;
}
}
if (ok)
{
cout << "Valorile sunt egale";
}
return 0;
}