const printSomethingAndReturn = (a) => {
  console.log('squaring a.....')
  return a * a
}
console.log(printSomethingAndReturn(2))