#!/bin/bash

read -p "Your name: " NAME
read -sp "Your age:" AGE

echo
echo "Name: $NAME, Age: $AGE"