Cod sursa(job #730342)
Utilizator | Data | 6 aprilie 2012 09:41:49 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.18 kb |
#include<fstream>
using namespace std;
int a,b;
int main ()
{
ifstream f("adunare.in");
f>>a>>b;
f.close();
ofstream s("adunare.out");
s<<a+b;
s.close();
return 0;
}