#!/bin/bash

A=1
while [ $A -le 16 ]; do
    B=1
    while [ $B -le 16 ]; do
        C=$(( A + B ))
        echo " $A+$B=$C"
        ((B++))
    done
    ((A++))
done

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: