summaryrefslogtreecommitdiff
path: root/misc/buggyAddingProgram.py
blob: edc3c7ac193b555742f694761e821420fbcb8ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python3

#Chapter 10 IDLE Debug

print('Enter the first number to add:')
first = input()
print('Enter the second number to add:')
second = input()
print('Enter the third number to add:')
third = input()
print('The sum is ' + first + second + third)