Cod sursa(job #135204)
| Utilizator | Data | 13 februarie 2008 12:23:18 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
using namespace std;
#include<fstream.h>
int main()
{
int a,b;
ifstream f1("adunare.in");
ofstream f2("adunare.out");
f1>>a;f1>>b; f1.close();
f2<<a+b;
f2.close();
return 0;
}
