Sunflower
1
🌻
(#649)
Thông tin
Số bài đã giải: 1
Performance Points: 1,05 #678
Active contests: 0/3
Đóng góp: 0
include <bits/stdc++.h>
using namespace std;
int main() { ios::syncwithstdio(false); cin.tie(nullptr);
int n;
cin >> n;
while (n--) {
long long a, b;
cin >> a >> b;
cout << a + b << "\n";
}
return 0;
}