From c1cdde1c5855b52fd04cad7f006f263c5783eb81 Mon Sep 17 00:00:00 2001 From: simransonkar17 <32771667+simransonkar17@users.noreply.github.com> Date: Tue, 31 Oct 2017 23:32:04 +0530 Subject: [PATCH] addtwo --- python/addtwonumber.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 python/addtwonumber.py diff --git a/python/addtwonumber.py b/python/addtwonumber.py new file mode 100644 index 0000000..2671015 --- /dev/null +++ b/python/addtwonumber.py @@ -0,0 +1,10 @@ +# This program adds two numbers + +num1 = 1.5 +num2 = 6.3 + +# Add two numbers +sum = float(num1) + float(num2) + +# Display the sum +print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))