#include<iostream> using namespace std; int main() { double t; for(int i=5;i<=15;i+=5) { t=i; cout<<t*9.8<<endl; } return 0; }