include <iostream>
include <stdlib>
using namespace std;
int main()
{
int a[10];
for(int i=0; i<10; i++) a[i] = rand() % 20;
for(int i=1; i<10; i+=2) cout << a[i];
return 0;
}
include <iostream>
include <stdlib>
using namespace std;
int main()
{
int a[10];
for(int i=0; i<10; i++) a[i] = rand() % 20;
for(int i=1; i<10; i+=2) cout << a[i];
return 0;
}