We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 445449a commit 2cabf70Copy full SHA for 2cabf70
test.py
@@ -2,5 +2,7 @@ def sum(a,b):
2
return a+b
3
4
n1=input('enter first number: ')
5
+n1=int(n1)
6
n2=input('enter first number: ')
7
+n2=int(n2)
8
print('sum is: ',sum(n1,n2))
0 commit comments