Skip to content

Commit ba075e6

Browse files
Create Addition.cpp
1 parent 214dee6 commit ba075e6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Addition.cpp

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#include <iostream>
2+
3+
using namespace std;
4+
5+
int main() {
6+
int a, b, sum;
7+
cout << "A <<< ";
8+
cin >> a;
9+
cout << "B <<< ";
10+
cin >> b;
11+
sum = a+b;
12+
cout << sum;
13+
return 0;
14+
}

0 commit comments

Comments
 (0)