Advertisement
Josif_tepe

Untitled

Mar 17th, 2021
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. using namespace std;
  4. int main()
  5. {
  6.     ifstream cin("in.txt");
  7.     ofstream cout("out.txt");
  8.     int a, b;
  9.     cin >> a >> b;
  10.     cout << a + b << endl;
  11.     return 0;
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement