fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(void)
  6. {
  7. cin.tie(NULL);
  8. ios::sync_with_stdio(false);
  9. int T;
  10. cin >> T;
  11.  
  12. for (int i = 0; i < T; i++)
  13. {
  14. int A, B;
  15. cin >> A >> B;
  16. cout << A + B << '\n';
  17. }
  18.  
  19. return 0;
  20. }
Success #stdin #stdout 0s 4360KB
stdin
5
1 1
12 34
5 500
40 60
1000 1000
stdout
2
46
505
100
2000