Cod sursa(job #560624)
Utilizator | Data | 18 martie 2011 16:49:21 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream.h>
#include<fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long long a,b,s;
int main()
{fin>>a;
fin>>b;
s=a+b;
fout<<s;
return 1;
}