#!/bin/bash
# COMP 198 Spring 2026
# bash1.sh
# Integer input, math, basic output

echo "Enter two values:"
read one two 
echo "First is:" $one
echo "Second is:" $two
let three=$one+$two
echo "Sum:" $three
