Cod sursa(job #592389)
Utilizator | Data | 28 mai 2011 11:16:32 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.18 kb |
#include "fstream.h"
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
long int a,b;
f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
return 1;
}