#include <iostream>
using namespace std;
int main()
{
int vconsist[100], n, i, x;
for(i=10; i<=99; i++) vconsist[i] = 0;
while(cin >> x){
if((x>=10) && (x<=99)) vconsist[x] = 1;
}
for(i=10; i<=99; i++)
if(vconsist[i] == 0)
cout << " numarul " << i <<
" NU apare in vector " << endl;
else
cout << " numarul " << i <<
" apare in vector " << endl;
return 0;
}