#include <iostream>
#include <string>
using namespace std;
int n[12];
int p;
int r;
int main()
{
cout << "Will introduce twelve real numbers for array.\n";
for(p=0;p<=11;p++)
{
cout << "Introduce real numbers for array:\n";
cin >> n[p];
}
cout << "Introduce real number:\n";
cin >> r;
for(p=0;p<=11;p++)
{
if(n[p] < p)
{
cout << " The number " << n[p] << " is less than " << r ;
}
}
system("PAUSE");
return EXIT_SUCCESS;
}