Cod sursa(job #612857)
Utilizator | Data | 11 septembrie 2011 14:33:11 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.13 kb |
#include <iostream.h>
#include <fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
{f>>a>>b;
g<<a+b;
}