Cod sursa(job #617522)
| Utilizator | Data | 14 octombrie 2011 23:30:14 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<iostream.h>
#include<fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
using namespace std;
int main()
{ long a,b;
fin>>a>>b;
fout<<a+b;
return 0;
}