Skip to content

Commit

Permalink
Update kitty.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FaustinaJenny authored Mar 12, 2024
1 parent f9b0c0a commit 8448ff9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kitty.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# This program adds two numbers

num1 = 1.5
num2 = 6.3
num2 = 6.2

# Add two numbers
sum = num1 + num2

# Display the sum
print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))
print('The sum of {0} and {1} is {2}'.format(num1, num2, sum))

0 comments on commit 8448ff9

Please sign in to comment.