Cod sursa(job #36102)
| Utilizator | Data | 22 martie 2007 23:02:31 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.12 kb |
#include<fstream.h>
void main (){
long a,b;
ifstream in("date.in");
ofstream out("date.out");
in>>a;
in>>b;
out<<a+b;
}