From f52dc164da6ec215ddfa49bb6a7715ac970a390a Mon Sep 17 00:00:00 2001 From: Abhiraj Singh Bhadoria <116302275+Abhirajxoo@users.noreply.github.com> Date: Sat, 29 Oct 2022 22:04:43 +0530 Subject: [PATCH] HACKTOBER FEST 2022 HEY SIR PLZ ADD MY FILE TO YOUR REPO. THANK YOU --- 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