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