Cod sursa(job #724506)
Utilizator | Data | 26 martie 2012 16:52:16 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 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;
return 0;
}