#include<iostream> using namespace std; int main() { double v1,v2,v3; v1=9.8*5; v2=9.8*10; v3=9.8*15; cout<<v1<<endl<<v2<<endl<<v3; return 0; }