Cod sursa(job #53129)
Utilizator | Data | 21 aprilie 2007 10:01:24 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream.h>
#include <string.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int main ()
{long a,b, c;
f>>a;
f>>b;
c=a+b;
g<<c;
return 0;}