Advertisement
alex326

Untitled

Jan 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. problema 1
  2.  
  3. #include <fstream>
  4. using namespace std;
  5. ifstream fin("sum.in");
  6. ofstream fout("sum.out");
  7. int main()
  8. {
  9. int a,b;
  10. fin>>a>>b;
  11. fout<<a+b;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement