This is a test 1 2 3 4 1 2 3 4 Code test ...
This is a test
1 |
2 |
3 |
4 |
Code test
1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 int a, b; 7 while (cin >> a >> b) 8 cout << a + b << endl; 9 return 0; 10 }