Cod sursa(job #437581)
Utilizator | Data | 9 aprilie 2010 22:23:29 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream>
using namespace std;
int main ()
{
ofstream out("adunare.out");
ifstream in("adunare.in");
int x,y;
in>>x;
in>>y;
out<<x+y;
return 0;
}