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