Cod sursa(job #382404)
| Utilizator | Data | 13 ianuarie 2010 17:13:25 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long a,b,s;
int main()
{
fin>>a;
fin>>b;
s=a+b;
fout<<s;
}
