Cod sursa(job #724515)
Utilizator | Data | 26 martie 2012 17:01:45 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.18 kb |
#include<iostream.h>
#include<fstream.h>
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long a, b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}