Cod sursa(job #492997)
Utilizator | Data | 16 octombrie 2010 17:33:17 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream.h>
int main ()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long int a,b;
f>>a>>b;
g<<a+b;
return 0;
}