diff --git a/02-add_nums.sh b/02-add_nums.sh index 2fd13cb..5bd2686 100644 --- a/02-add_nums.sh +++ b/02-add_nums.sh @@ -13,3 +13,12 @@ echo "The sum is $sum" # exercise: ask the user for the width and height and present total # number of pixels + +echo "Enter the width (or image width):" +read width +echo "Enter the height (or image height):" +read height +pixels=$(( width * height )) +echo "You have $pixels total pixels!" + +echo "Laureesh’s unified version – both universes merged successfully!" diff --git a/after-merging.jpg b/after-merging.jpg new file mode 100644 index 0000000..1dffa7b Binary files /dev/null and b/after-merging.jpg differ diff --git a/parallel.jpg b/parallel.jpg new file mode 100644 index 0000000..3f129b9 Binary files /dev/null and b/parallel.jpg differ