Cod sursa(job #178966)
Utilizator | Data | 15 aprilie 2008 13:42:55 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
# include<fstream.h>
# include<iostream.h>
long long a,b;
int main()
{
fstream f("adunare.in" ,ios::in);
fstream g("adunare.out" ,ios::out);
f>>a;
f>>b;
f.close();
g<<a+b;
f.close();
return 0;
}