Cod sursa(job #94931)
| Utilizator | Data | 26 octombrie 2007 15:59:22 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
int main()
{int a,b;
ifstream in("adunare.in");
in>>a>>b;
in.close();
ofstream out("adunare.out");
out<<a+b;
out.close();
return 0;
}
