From f3c1276150d7dddb93f8e386b6b44587ab8a8392 Mon Sep 17 00:00:00 2001 From: ChauhanDiya <116335979+ChauhanDiya@users.noreply.github.com> Date: Sun, 30 Oct 2022 13:16:18 +0530 Subject: [PATCH] Hacktober Fest 2022 Hii Sir, Please accept my repo. Thanks --- First.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 First.py diff --git a/First.py b/First.py new file mode 100644 index 0000000..38c602c --- /dev/null +++ b/First.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)) \ No newline at end of file