Cod sursa(job #60514)
| Utilizator | Data | 14 mai 2007 22:39:31 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
int main ()
{ int a,b,s=0;
fin>>a>>b;
s=a+b;
fout<<s;
return 0;
}