Skip to content

Commit

Permalink
Adding a problems.csv example file
Browse files Browse the repository at this point in the history
  • Loading branch information
joncalhoun committed Oct 9, 2017
1 parent 6a845a0 commit 336498f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions problems.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
5+5,10
1+1,2
8+3,11
1+2,3
8+6,14
3+1,4
1+4,5
5+1,6
2+3,5
3+3,6
2+4,6
5+2,7

2 comments on commit 336498f

@Devadatthu
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

a,b=(int(x) for x in input('enter a and b').split())
c=a+b;print('the sum of a and b is',c)

@Devadatthu
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

by using above problem by python we can add two values.

Please sign in to comment.