Cod sursa(job #219846)
Utilizator | Data | 8 noiembrie 2008 13:52:58 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include<iostream.h>
#include<conio.h>
#include<fstream.h>
long int a,b;
int main()
{
ifstream fin("adunare.in");
fin>>a>>b;
fin.close();
ofstream fout("adunare.out");
fout<<a+b;
fout.close();
return 0;
}