Cod sursa(job #213102)
Utilizator | Data | 8 octombrie 2008 17:50:58 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<iostream.h>
#include<fstream.h>
int n,m;
ifstream f1("adunare.in");
ofstream f2("adunare.out");
int main()
{
f1>>n;
f1>>m;
f2<<n+m;
f1.close();
f2.close();
}