Skip to content

Commit

Permalink
Day1 codes
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammed-ajmal committed Feb 26, 2019
1 parent ad04c4e commit 523b0ab
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Day1-Python-Intro/Workshop1Add2InputsNumbers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

# Program For Adding 2 user inputs(Numbers)
A = input("Enter a input")
B = input("Enter a input")

# Add two numbers
Add = float(A) + float(B)

# Display the result
print('The sum of {0} and {1} is {2}'.format(A, B, Add))

0 comments on commit 523b0ab

Please sign in to comment.