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