#!/bin/bash

# Prompt user to enter their name
echo -n "Enter your name: "
read name  # Reading the input

# Display the output in the specified format
echo "Your name is $name."
