diff --git a/README.md b/README.md index b103466139..cd5a4f08ba 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +<<<<<<< HEAD # Introduction to Git and GitHub ## Simple Interest Calculator @@ -13,4 +14,4 @@ Output simple interest = p*t*r ``` -_© 2022 XYZ, Inc._ +2022 XYZ, Inc. diff --git a/simple-interest.sh b/simple-interest.sh deleted file mode 100755 index 27a60fcb55..0000000000 --- a/simple-interest.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash -# This script calculates simple interest given principal, annual rate of interest and time period in years. -# Do not use this in production. Sample purpose only. - -# Author: Upkar Lidder (IBM) -# Addtional Authors: -# - -# Input: -# p, principal amount -# t, time period in years -# r, annual rate of interest - -# Output: -# simple interest = p*t*r - -echo "Enter the principal:" -read p -echo "Enter rate of interest per year:" -read r -echo "Enter time period in years:" -read t - -s=$(expr $p \* $t \* $r / 100) -echo "The simple interest is: " -echo $s