Skip to content

Commit f1134d5

Browse files
committed
Added 1351A - A+B (Trial Problem).cpp
1 parent b521a05 commit f1134d5

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

1351A - A+B (Trial Problem).cpp

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#include<bits/stdc++.h>
2+
using namespace std;
3+
4+
// Code Written By: Vikash Patel
5+
6+
// Codeforces Profile: https://codeforces.com/profile/vikashpatel
7+
8+
int main()
9+
{
10+
int t;
11+
cin>>t;
12+
while(t--)
13+
{
14+
int a,b;
15+
cin>>a>>b;
16+
cout<<a+b<<endl;
17+
}
18+
}

0 commit comments

Comments
 (0)