Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
FaustinaJenny committed Mar 12, 2024
1 parent bd1c105 commit f9b0c0a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions kitty.py
Original file line number Diff line number Diff line change
@@ -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))

0 comments on commit f9b0c0a

Please sign in to comment.