#include <iostream>
using namespace std;
int main() {
	for(long i=1;i<1000;i++){
		cout<<(3.0*i*i)/(i*i+100*i)<<endl;
	}
	return 0;
}