#include<iostream> using namespace std; int main() { double a,b,c; a=5; b=10; c=15; cout<<9.8*a<<endl; cout<<9.8*b<<endl; cout<<9.8*c<<endl; }