Cod sursa(job #374846)
| Utilizator | Data | 18 decembrie 2009 14:53:26 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<iostream.h>
#include<fstream.h>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main(void)
{int a,b,s;
f>>a;
f>>b;
s=a+b;
g<<s;
f.close();
g.close();
}
