Cod sursa(job #1759629)
Utilizator | Data | 19 septembrie 2016 17:25:00 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream>
int main(){
int a,b;
ifstream fin ( "adunare.in");
ofstream fout ("adunare.out");
fin >> a >> b;
fout << a + b;
fin.close();
fout.close();
return 0;
}