fork download
  1. /*
  2. ID: minidra1
  3. TASK: test
  4. LANG: C++14
  5. */
  6. #include <bits/stdc++.h>
  7. using namespace std;
  8.  
  9. int main() {
  10. ios::sync_with_stdio(false);
  11. cin.tie(nullptr);
  12.  
  13. freopen("test.in", "r", stdin);
  14. freopen("test.out", "w", stdout);
  15.  
  16. long long a, b;
  17. if (cin >> a >> b) {
  18. cout << (a + b) << "\n";
  19. }
  20. return 0;
  21. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Standard output is empty