Cod sursa(job #466472)
| Utilizator | Data | 26 iunie 2010 18:27:25 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<iostream.h>
#include<fstream.h>
fstream xi("adunare.in",ios::in) , xo("adunare.out",ios::out);
int main()
{
int a,b;
xi>>a>>b;
xo<<a+b;
}
