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