Cod sursa(job #444495)
Utilizator | Data | 20 aprilie 2010 16:37:57 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream.h>
#include<conio.h>
int main ()
{
clrscr();
long a,b;
ifstream in("adunare.in");
ofstream out("adunare.out");
in>>a;
in>>b;
out<<a+b;
getch ();
return 0;
}