#include <iostream>
using namespace std;

int main() {
	float start = -3.1400001049041748046875;
	float end = 3.1400001049041748046875;
	float step = 0.098125003278255462646484375;
	
	double value = start;
	
	cout.precision(15);
	cout << value << '\n';;
	while (value != end)
	{
		value += step;
		cout << value << '\n';
	}
}