#!/bin/bash

echo -n Your name:
read NAME
echo -n Your age:
read AGE
echo
echo ===Employee statistics===
echo Name: $NAME
echo Age: $AGE
