Cod sursa(job #198889)
Utilizator | Data | 15 iulie 2008 18:36:00 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
using namespace std;
#include <iostream>
#include <fstream>
int main()
{
int a,b;
ifstream f("adunare.in");
f>>a;
f>>b;
ofstream g("adunare.out");
g<<a+b;
f.close();
g.close();
return 0;
}