Skip to content

Commit 2cabf70

Browse files
author
learnp
committed
Fixed a bug in test.py
1 parent 445449a commit 2cabf70

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test.py

+2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ def sum(a,b):
22
return a+b
33

44
n1=input('enter first number: ')
5+
n1=int(n1)
56
n2=input('enter first number: ')
7+
n2=int(n2)
68
print('sum is: ',sum(n1,n2))

0 commit comments

Comments
 (0)