Cod sursa(job #759945)
Utilizator | Data | 19 iunie 2012 21:09:52 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.13 kb |
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
long a,b;
int main()
{
f>>a>>b;
g<<a+b;
return 0;
}