Cod sursa(job #495544)

Utilizator swxxIoo Andrei Rares swxx Data 25 octombrie 2010 19:48:12
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.22 kb
#include<fstream>
using namespace std;

int main()

{
 int a,b,c=0;
    ifstream f ("suma.in");
    f>>a>>b;
    c=a+b;
    ofstream g ("sumat.out");
    g<<c;
    f.close();
    g.close();
    return 0;
}