#!/usr/bin/bash

# Specify the range using variables
read -p "Enter start number: " start
read -p "Enter end number: " end

# For loop with variable range
for (( i = start; i <= end; i++ ))
do
    echo "Number: $i"
done
