Cod sursa(job #551543)
Utilizator | Data | 10 martie 2011 20:58:00 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
ifstream fi("ApB.in");
ofstream fo("ApB.out");
int a,b;
int main()
{
fi>>a>>b;
fo<<a+b;
fi.close();
fo.close();
return 0;
}