Cod sursa(job #2173320)
Utilizator | Data | 15 martie 2018 21:39:30 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace::std;
int main(){
int a, b;
ifstream fin("adunare.in");
fin >> a >> b;
fin.close();
ofstream fout("adunare.out");
fout << a+b;
fout.close();
return 0;
}