Cod sursa(job #764051)
Utilizator | Data | 3 iulie 2012 21:47:44 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<iostream.h>
#include<fstream.h>
int main()
{
ifstream f("anudare.in"); ofstream g("adunare.out");
long int a,b;
f>>a>>b;
g<<a+b;
f.close(); g.close();
return 0;
}