Cod sursa(job #77100)
Utilizator | Data | 13 august 2007 00:49:00 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream.h>
int main()
{
ifstream fi("adunare.in");
ofstream fo("adunare.out");
long long a, b;
fi>>a>>b;
fi.close();
fo << a + b;
fo.close();
return 0;
}