#!/bin/bash

# Read a single line of input from stdin
read -r line

# Print the input line to stdout
echo "You entered: $line"