Skip to content

Commit b6dba46

Browse files
Add files via upload
1 parent a4666a4 commit b6dba46

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

a+b.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#include<iostream>
2+
using namespace std;
3+
int main()
4+
{
5+
int a, b;
6+
cin >> a >> b;
7+
cout << a + b;
8+
return 0;
9+
}
10+

0 commit comments

Comments
 (0)