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