Cod sursa(job #784414)
Utilizator | Data | 5 septembrie 2012 18:16:58 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.14 kb |
#include<iostream.h>
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
main()
{
long a,b;
f>>a>>b;
g<<a+b;
}