From 4caf25bb0465d7c8a5beadbe7e2b0819f2110793 Mon Sep 17 00:00:00 2001 From: Mehermitha31 Date: Tue, 30 Jan 2024 14:14:22 +0530 Subject: [PATCH 1/2] first commit --- test.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 test.py diff --git a/test.py b/test.py new file mode 100644 index 0000000..e69de29 From 17fa2d6cccadaf03ee39fab01ac9d840bcc246d0 Mon Sep 17 00:00:00 2001 From: MeherMitha31 Date: Tue, 30 Jan 2024 14:28:53 +0530 Subject: [PATCH 2/2] first commit --- test.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test.py b/test.py index e69de29..8fbba12 100644 --- a/test.py +++ b/test.py @@ -0,0 +1,10 @@ +# This program adds two numbers + +num1 = 1.5 +num2 = 6.3 + +# Add two numbers +sum = num1 + num2 + +# Display the sum +print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))