Cod sursa(job #442591)
| Utilizator | Data | 14 aprilie 2010 20:45:16 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream.h>
using namespace std;
void main(){
long a,b;
ifstream in("adunare.in");
ofstream out("adunare.out");
in>>a;
in>>b;
out<<a+b;
}
