#include<iostream> using namespace std; int main(){ const float g=9.8; int v; cout<<5*g<<endl; cout<<10*g<<endl; cout<<15*g<<endl; return 0; }