Cod sursa(job #553738)
| Utilizator | Data | 14 martie 2011 12:03:33 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream.h>
using namespace std;
long int a,b;
ifstream f("Adunare.IN");
ofstream g("Adunare.Out");
int main()
{ f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;}