Voi fir a getting back to
#include <iostream>
using namespace std;
void sum(int a, int b){
cout << a + b << "\n";
}
signed main(){
int t;
cin >> t;
while(t--){
int x,y;
cin >> x >> y;
sum(x,y);
Voi fir a getting back to
#include <iostream>
using namespace std;
void sum(int a, int b){
cout << a + b << "\n";
}
signed main(){
int t;
cin >> t;
while(t--){
int x,y;
cin >> x >> y;
sum(x,y);
}
}