From 6cc8e30ab2c917ac680cd83514621b505e538506 Mon Sep 17 00:00:00 2001 From: asfor-eng Date: Thu, 21 Aug 2025 14:55:00 +0300 Subject: [PATCH 1/3] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index b103466139..d0472cce85 100644 --- a/README.md +++ b/README.md @@ -12,5 +12,4 @@ Input: Output simple interest = p*t*r ``` - -_© 2022 XYZ, Inc._ +2023 XYZ, Inc. From 4f073e098ed2380bbd269bc9be214d2547280594 Mon Sep 17 00:00:00 2001 From: Adham Hany Date: Sat, 23 Aug 2025 19:02:07 +0300 Subject: [PATCH 2/3] Added my name to README --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index b103466139..b32e0616fe 100644 --- a/README.md +++ b/README.md @@ -14,3 +14,6 @@ Output ``` _© 2022 XYZ, Inc._ + + +Asfor From 8622dfc710d58f68bd92a5d4b3a95228da4dd443 Mon Sep 17 00:00:00 2001 From: Adham Hany Date: Sat, 23 Aug 2025 19:19:50 +0300 Subject: [PATCH 3/3] Revert "fixing typo" This reverts commit 46d3edae49a4f042875150edb056c08519062f91. --- compound_interest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compound_interest.py b/compound_interest.py index 9673a7a029..3b692ee38e 100755 --- a/compound_interest.py +++ b/compound_interest.py @@ -17,7 +17,7 @@ def compound_interest(p, t, r): if __name__ == "__main__": - p = float(input("Enter the principal amount: ")) + p = float(input("Enter the principle amount: ")) t = float(input("Enter the time period: ")) r = float(input("Enter the rate of interest: "))