Cod sursa(job #731260)
Utilizator | Data | 7 aprilie 2012 20:08:48 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.21 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main() {
int a, b;
fin >> a >> b;
fout << a + b << "\n";
fout.close();
return 0;
}