Cod sursa(job #363847)
Utilizator | Data | 14 noiembrie 2009 20:47:56 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | veryeasy | Marime | 0.17 kb |
#include<fstream.h>
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}