diff --git a/new.py b/new.py new file mode 100644 index 0000000..bce62d0 --- /dev/null +++ b/new.py @@ -0,0 +1,10 @@ +# This program adds two numbers + +num1 = 5.2 +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)) diff --git a/test1.py b/test1.py new file mode 100644 index 0000000..bcf8833 --- /dev/null +++ b/test1.py @@ -0,0 +1,2 @@ +print("heye"); +print("see") \ No newline at end of file