Cod sursa(job #250154)
| Utilizator | Data | 30 ianuarie 2009 11:53:46 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main();
{
long int a,b,s;
fin>>a>>b;
s=a+b;
fout<<s;
}