#include <iostream>
#include <math.h>
using namespace std;
int main() {
double array[99];
for (int x = 0; x <= 99; ++x) {
array[x] = cos((x + 1) / 15);
}
for (int x = 0; x <= 99; ++x) {
cout << "array[" << x << "] - " << array[x] << endl;
}
return 0;
}