#!/bin/bash

# Declare variables
name="John"
age=25

# Print the values of variables
echo "My name is $name and I am $age years old."
