Cod sursa(job #801344)
Utilizator | Data | 23 octombrie 2012 23:59:27 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.25 kb |
#include<fstream>
using namespace std;
int main() {
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b;
fin >> a >> b;
fout << a + b;
fin.close();
fout.close();
return 0 ;
}