#!/bin/bash
for((i=1;i<=9;i++))
do
for((j=1;j<=i;j++))
let "temp=i*j"
echo -n "$j*$i=$temp"
done
echo ""