Cod sursa(job #2409590)
Utilizator | Data | 19 aprilie 2019 11:36:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <fstream>
#include <iostream>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main(int argc, char *argv[]) {
int a, b;
fin >> a >> b;
fout << a + b;
fin.close();
fout.close();
return 0;
}