Cod sursa(job #381657)
Utilizator | Data | 11 ianuarie 2010 12:34:36 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
#include <iostream>
using namespace std;
ifstream f("alfa.in")
ofstream g("alfa.out")
int main()
{
long a,b;
f>>a>>b;
g<<a+b;
f.close ();
g.close ();
return 0;
}