Cod sursa(job #2323711)
| Utilizator | Data | 19 ianuarie 2019 16:07:29 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.26 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("suma.in");
ofstream fout("suma.out");
int a,b,s;
int main()
{ fin>>a>>b;
s=a+b;
fout<<s;
fin.close();
fout.close();
return 0;
}
