Cod sursa(job #83925)
| Utilizator | Data | 12 septembrie 2007 16:21:40 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
void main (){
long a,b,s=0;
ifstream in ("adunare.in");
ofstream out ("adunare.out");
in>>a;
in>>b;
s=a+b;
out<<s;
}
