let a=Number(prompt("a:")); let b=Number(prompt("b:")); let s=0; for(let i=1;i<=a;i++){ s=i*b; } console.log(s);
kjhhgjh